Skip to content

Commit

Permalink
Implement multiple site versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Aug 26, 2024
1 parent 0db1867 commit 95aba20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export REMOTE="https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git"
export GIT_COMMITTER_NAME="${GITHUB_ACTOR}"
git remote set-url origin "$REMOTE"
./gradlew build
./gradlew -x build buildSite
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:

- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew --stacktrace -x build buildSite
run: |
export GIT_COMMITTER_NAME="${GITHUB_ACTOR}"
./gradlew --stacktrace -x build buildSite
- if: ${{ inputs.check_directory != '' }}
run: ls -AlF "${{ inputs.check_directory }}"

0 comments on commit 95aba20

Please sign in to comment.