Add workflow to move latest tag on tag push

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Oliver Kopp 2026-06-14 16:30:08 +02:00
parent 7ca5f46d06
commit 7361449228

16
.github/workflows/latest_tag.yml vendored Normal file
View file

@ -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