From 9ba9c657558a21cdf1adcd3689afaf4e245f2949 Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Tue, 29 Jul 2025 15:04:21 +0200 Subject: [PATCH] fix(gh): release create does not push git tag by default (#896) Signed-off-by: Dario Tranchitella --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d95243..a746ed6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,6 +37,12 @@ jobs: run: | export TAG="${{ steps.tag.outputs.tag }}" envsubst < .github/release-template.md > release-notes.md + - name: create and push git tag + run: | + git config user.name "github-actions" + git config user.email "github-actions@github.com" + git tag "${{ steps.tag.outputs.tag }}" + git push origin "${{ steps.tag.outputs.tag }}" - name: create GitHub release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}