We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 606863a + 84df3a3 commit 406853cCopy full SHA for 406853c
1 file changed
.github/workflows/build.yml
@@ -71,11 +71,8 @@ jobs:
71
72
- name: Create and Push Git Tag
73
run: |
74
- git checkout main # or your release branch
75
git tag -a v${{ github.event.inputs.release_version }} -m "Release v${{ github.event.inputs.release_version }}"
76
git push origin v${{ github.event.inputs.release_version }}
77
- env:
78
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
79
80
- name: Create GitHub Release
81
uses: softprops/action-gh-release@v2
@@ -89,6 +86,7 @@ jobs:
89
86
- name: Upload JAR to GitHub Release
90
87
91
88
with:
+ tag_name: v${{ github.event.inputs.release_version }}
92
files: target/*.jar
93
env:
94
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments