We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8045f74 commit 681e7abCopy full SHA for 681e7ab
.github/workflows/release.yml
@@ -6,6 +6,7 @@ env:
6
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7
JAVA_VERSION: '17.0.15' # this must be a specific version for reproducible builds
8
RELEASE_TAG_PREFIX: 'v'
9
+ DOCUMENTATION: 'false'
10
jobs:
11
publish:
12
permissions:
@@ -118,8 +119,10 @@ jobs:
118
119
findSonatypeStagingRepository
120
releaseSonatypeStagingRepository
121
- name: "📖 Generate Documentation"
122
+ if: ${{ env.DOCUMENTATION != 'false' }}
123
run: ./gradlew docs
124
- name: "📤 Publish Documentation to Github Pages"
125
126
uses: apache/grails-github-actions/deploy-github-pages@asf
127
env:
128
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments