From 3130ba247e6b462c9a18b92aa1f5763405d0198f Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Sun, 23 Nov 2025 14:36:13 -0500 Subject: [PATCH] [gha] Fix maven settings file location --- .github/workflows/site.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/site.yaml b/.github/workflows/site.yaml index d3962e898..1dcd2eac4 100644 --- a/.github/workflows/site.yaml +++ b/.github/workflows/site.yaml @@ -32,7 +32,7 @@ jobs: - name: Build site # Note: the mvnw executable is in the parent directory - not this working directory. We only do site on the # core project, not all the test projects. - run: ../mvnw site site:stage --batch-mode --no-transfer-progress --settings ./.mvn/settings.xml --show-version -Dlicense.skip=true -DskipTests + run: ../mvnw site site:stage --batch-mode --no-transfer-progress --settings ../.mvn/settings.xml --show-version -Dlicense.skip=true -DskipTests env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NVD_API_KEY: ${{ secrets.NVD_API_KEY }}