Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit 0b775e7

Browse files
authored
ci: fix condition for doc publishing step (#171)
1 parent 5fb4d0b commit 0b775e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
if: success() && github.event_name == 'push' && matrix.java == '17'
5555
run: ./gradlew docs
5656
- name: "📤 Publish to Github Pages"
57-
if: github.event_name == 'push' && steps.publish.outcome == 'success' && matrix.java == '17'
57+
if: success() && github.event_name == 'push' && matrix.java == '17'
5858
uses: grails/github-pages-deploy-action@grails
5959
env:
6060
BRANCH: gh-pages

0 commit comments

Comments
 (0)