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 6450feb commit de61ae5Copy full SHA for de61ae5
.github/workflows/deploy.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ - 4.3.x
8
9
# Equivalent to Timer Trigger (H H * * * = once daily)
10
schedule:
@@ -90,5 +91,10 @@ jobs:
90
91
env:
92
REPO_SPRING_IO_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
93
REPO_SPRING_IO_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
- run: ./mvnw clean deploy -Pdocs,deploy,spring -B -U
94
+ run: |
95
+ if [[ "${{ matrix.java-version }}" == "17" ]]; then
96
+ ./mvnw clean deploy -Pdocs,deploy,spring -B -U
97
+ else
98
+ ./mvnw clean deploy -Pdeploy,spring -B -U
99
+ fi
100
0 commit comments