Skip to content

Commit

Permalink
[site] Skip staging and just use 'site' folder (single module way)
Browse files Browse the repository at this point in the history
staging is not necessary for a single module, just use the site folder directly.  This closely emulates what the release is trying to do now.
  • Loading branch information
hazendaz committed Dec 8, 2023
1 parent a55e284 commit e57cd05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Build site
run: ./mvnw site site:stage -DskipTests -B -V --no-transfer-progress -Dlicense.skip=true
run: ./mvnw site -DskipTests -B -V --no-transfer-progress -Dlicense.skip=true
env:
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -29,6 +29,6 @@ jobs:
with:
ssh-key: true
branch: gh-pages
folder: target/staging
folder: target/site
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e57cd05

Please sign in to comment.