Skip to content

Commit

Permalink
Fix doc publication job
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Jan 11, 2024
1 parent 13b8663 commit 46f0adf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/push-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
check:
runs-on: ubuntu-latest
if: github.repository == 'asciidoctor/asciidoctor-gradle-plugin'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -15,11 +16,14 @@ jobs:
- uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
- run: cd docs
- name: Combine documentation
run: ./gradlew --console=plain -q combineDocs
run: |
cd docs
./gradlew --console=plain -q combineDocs
- name: Publish documentation
run: ./gradlew --console=plain --info :antora:publishDocs :gh-pages:publishDocs
run: |
cd docs
./gradlew --console=plain --info :antora:publishDocs :gh-pages:publishDocs
-Dorg.ajoberstar.grgit.auth.username=${{ secrets.GITHUB_PUBLISH_USER }}
-Dorg.ajoberstar.grgit.auth.password=${{ secrets.GITHUB_PUBLISH_KEY }}
-Dorg.ajoberstar.grgit.auth.force=hardcoded

0 comments on commit 46f0adf

Please sign in to comment.