diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 0af62e3..51cfe85 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -42,6 +42,14 @@ jobs: - name: Generate Changelog run: awk '/^## \[/{if (f) exit; f=1; next} f' CHANGELOG.md > RELEASE_NOTES.md + - name: 🏷️ Push Release Tag + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git tag v${{ env.PACKAGE_VERSION }} + git push origin v${{ env.PACKAGE_VERSION }} + fi + - name: GitHub Release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}