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 026b38b commit c4b9605Copy full SHA for c4b9605
.github/workflows/build.yml
@@ -163,7 +163,7 @@ jobs:
163
164
publish:
165
runs-on: ubuntu-latest
166
- needs: [ build, test ]
+ # needs: [ build, test ]
167
timeout-minutes: 30
168
env:
169
JDK_VER: 17
@@ -183,7 +183,7 @@ jobs:
183
PARENT_VERSION=$(./mvnw -B -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
184
echo "PARENT_VERSION=$PARENT_VERSION" >> $GITHUB_ENV
185
- name: Is SNAPSHOT release ?
186
- if: contains(github.ref, 'master') && contains(env.PARENT_VERSION, '-SNAPSHOT')
+ if: contains(env.PARENT_VERSION, '-SNAPSHOT')
187
run: |
188
echo "DEPLOY_OSSRH=true" >> $GITHUB_ENV
189
- name: Is Release or RC version ?
0 commit comments