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 70f6a21 commit bc535baCopy full SHA for bc535ba
1 file changed
.github/workflows/main.yml
@@ -195,6 +195,7 @@ jobs:
195
gpg-private-key: ${{ secrets.gpg_secret }}
196
- name: Publish new versions
197
run: |
198
+ set -e
199
git config user.name "${{ github.event.head_commit.committer.name }}"
200
git config user.email "${{ github.event.head_commit.committer.email }}"
201
CURRENT_VERSION=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)
@@ -234,6 +235,6 @@ jobs:
234
235
-multi-release \
236
-Pchecksum-enforce
237
./mvnw versions:set -DnewVersion=$NEXT_SNAPSHOT_VERSION -DgenerateBackupPoms=false -Pchecksum-enforce
- git add git add --all
238
+ git add --all
239
git commit -m "Start next development iteration $NEXT_SNAPSHOT_VERSION"
- git push --tags
240
+ git push --follow-tags
0 commit comments