From 7361449228ae04711770a6fe3d64a879276b9f9d Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Sun, 14 Jun 2026 16:30:08 +0200 Subject: [PATCH] Add workflow to move latest tag on tag push Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/latest_tag.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/latest_tag.yml diff --git a/.github/workflows/latest_tag.yml b/.github/workflows/latest_tag.yml new file mode 100644 index 0000000..402cb54 --- /dev/null +++ b/.github/workflows/latest_tag.yml @@ -0,0 +1,16 @@ +name: Update latest tag + +on: + push: + tags: + - "v*" + +jobs: + update_latest_tag: + runs-on: ubuntu-latest + name: Move latest tag + permissions: + contents: write + steps: + - uses: actions/checkout@v5 + - uses: EndBug/latest-tag@latest