From 028344d02ccd855d53bdd31d58a6ca50f0915f6e Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Sun, 26 Jan 2025 19:53:27 +0100 Subject: [PATCH] ci: Add major and minor version tagging to release workflow --- .gitea/workflows/release-new.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release-new.yml b/.gitea/workflows/release-new.yml index db67b85..26ec1b0 100644 --- a/.gitea/workflows/release-new.yml +++ b/.gitea/workflows/release-new.yml @@ -24,4 +24,19 @@ jobs: # this is a built-in strategy in release-please, see "Action Inputs" # for more options release-type: simple - target-branch: main \ No newline at end of file + target-branch: main + - uses: actions/checkout@v4 + - name: tag major and minor versions + if: ${{ steps.release.outputs.release_created }} + run: | + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com + git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/joaquinjsb/gitea-release-please-action.git" + git tag -d v${{ steps.release.outputs.major }} || true + git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true + git push origin :v${{ steps.release.outputs.major }} || true + git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true + git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" + git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" + git push origin v${{ steps.release.outputs.major }} + git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} \ No newline at end of file