Update latest tag when new release

This commit is contained in:
yhirose
2026-02-21 23:27:16 -05:00
parent e61a8bcec7
commit b4d16a582d

19
.github/workflows/tag-latest.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Update latest tag
on:
release:
types: [published]
jobs:
tag-latest:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Force-update latest tag
run: |
git tag -f latest
git push origin latest --force