From 34bacb7b6366c1f4fbec2c42c9235931a913c70a Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Thu, 7 Dec 2023 22:26:46 -0500 Subject: [PATCH] Revert "[site] Skip staging and just use 'site' folder (single module way)" This reverts commit e57cd05c6ec6deccd7f0955cf510b94a7df5891c. --- .github/workflows/site.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/site.yaml b/.github/workflows/site.yaml index 5c0792a5..d0c67a28 100644 --- a/.github/workflows/site.yaml +++ b/.github/workflows/site.yaml @@ -20,7 +20,7 @@ jobs: with: ssh-private-key: ${{ secrets.DEPLOY_KEY }} - name: Build site - run: ./mvnw site -DskipTests -B -V --no-transfer-progress -Dlicense.skip=true + run: ./mvnw site site:stage -DskipTests -B -V --no-transfer-progress -Dlicense.skip=true env: CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -29,6 +29,6 @@ jobs: with: ssh-key: true branch: gh-pages - folder: target/site + folder: target/staging env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}