Skip to content

Commit

Permalink
ci: fix condition for doc publishing step
Browse files Browse the repository at this point in the history
  • Loading branch information
matrei committed Jan 9, 2025
1 parent 5fb4d0b commit 84b2943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
if: success() && github.event_name == 'push' && matrix.java == '17'
run: ./gradlew docs
- name: "📤 Publish to Github Pages"
if: github.event_name == 'push' && steps.publish.outcome == 'success' && matrix.java == '17'
if: success() && github.event_name == 'push' && matrix.java == '17'
uses: grails/github-pages-deploy-action@grails
env:
BRANCH: gh-pages
Expand Down

0 comments on commit 84b2943

Please sign in to comment.