We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d34f07 commit 8e91c36Copy full SHA for 8e91c36
.github/workflows/github-release.yml
@@ -42,6 +42,14 @@ jobs:
42
- name: Generate Changelog
43
run: awk '/^## \[/{if (f) exit; f=1; next} f' CHANGELOG.md > RELEASE_NOTES.md
44
45
+ - name: 🏷️ Push Release Tag
46
+ run: |
47
+ git config --global user.name "github-actions[bot]"
48
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
49
+ git tag v${{ env.PACKAGE_VERSION }}
50
+ git push origin v${{ env.PACKAGE_VERSION }}
51
+ fi
52
+
53
- name: GitHub Release
54
env:
55
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments