We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e33bbd2 commit 30f5f82Copy full SHA for 30f5f82
1 file changed
.github/workflows/deploy.yml
@@ -228,9 +228,10 @@ jobs:
228
# If branch config contains JDK 8, use docs profile with JDK 8
229
# Otherwise, use docs profile with JDK 17
230
if [[ ("${{ matrix.has-jdk8 }}" == "true" && "${{ matrix.java-version }}" == "8") ]] || [[ ("${{ matrix.has-jdk8 }}" == "false" && "${{ matrix.java-version }}" == "17") ]]; then
231
- echo "Building with docs profile"
+ echo "Building with docs profile, and deploying docs"
232
./mvnw clean deploy -Pdocs,deploy,spring -B -U
233
else
234
+ echo "Will not add docs profile, docs will not be deployed"
235
./mvnw clean deploy -Pdeploy,spring -B -U
236
fi
237
0 commit comments