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 5803602 commit 29543a1Copy full SHA for 29543a1
.github/workflows/release-publish.yml
@@ -34,6 +34,13 @@ jobs:
34
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --dearmor > ~/.gnupg/secring.gpg
35
gpg --import ~/.gnupg/secring.gpg
36
37
+ - name: Set release version in all POMs
38
+ run: |
39
+ # Update version in all POMs
40
+ cd accessors-smart && ./mvnw versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
41
+ cd ../json-smart && ./mvnw versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
42
+ cd ../json-smart-action && ./mvnw versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
43
+
44
- name: Release accessors-smart
45
run: |
46
cd accessors-smart
0 commit comments