From 0f0ba243d5aa939badbcbc29db89430ccdc51a00 Mon Sep 17 00:00:00 2001 From: Klagarge Date: Sat, 14 Feb 2026 02:33:16 +0100 Subject: [PATCH] ci: push tag Co-authored-by: Gemini --- .github/workflows/build-release.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index a9447c2..d2b3ccb 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -61,6 +61,15 @@ jobs: echo "tag=$NEW_TAG" >> $GITHUB_OUTPUT echo "Next version : $NEW_TAG" + - name: Push Tag + run: | + git config user.name "Gitea Actions" + git config user.email "actions@gitea.local" + git tag ${{ steps.version.outputs.tag }} + git push origin ${{ steps.version.outputs.tag }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Create release and upload PDF # Note: softprops works very well on recent Gitea - name: Create Release