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 29543a1 commit 49e150fCopy full SHA for 49e150f
.github/workflows/release-publish.yml
@@ -67,3 +67,10 @@ jobs:
67
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
68
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
69
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
70
+
71
+ - name: Create git tag
72
+ run: |
73
+ git config user.name "github-actions[bot]"
74
+ git config user.email "github-actions[bot]@users.noreply.github.com"
75
+ git tag -a "v${{ github.event.inputs.version }}" -m "Release version ${{ github.event.inputs.version }}"
76
+ git push origin "v${{ github.event.inputs.version }}"
0 commit comments