From be2188a784872db5478b343bd3f96d6c50c99e02 Mon Sep 17 00:00:00 2001 From: Tomas Psota Date: Wed, 1 Apr 2026 13:37:39 +0200 Subject: [PATCH] feat: update release --- .github/workflows/github-release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) 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 }}