From 5c1d51c3164d358ccc50ca94d314c8ee4c0ff137 Mon Sep 17 00:00:00 2001 From: Jasperhino Date: Thu, 23 Apr 2026 12:56:13 +0200 Subject: [PATCH] Add auto-tag workflow to move v1 tag on main pushes --- .github/workflows/auto-tag.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/auto-tag.yml diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml new file mode 100644 index 0000000..216f098 --- /dev/null +++ b/.github/workflows/auto-tag.yml @@ -0,0 +1,18 @@ +name: Auto-tag main + +on: + push: + branches: [main] + +permissions: + contents: write + +jobs: + tag: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Force-update v1 tag + run: | + git tag -f v1 + git push -f origin v1