fix github action not updating the latest tag

This commit is contained in:
csd4ni3l
2025-11-09 22:17:36 +01:00
parent 215bca561f
commit 478af97ae7

View File

@@ -99,6 +99,13 @@ jobs:
with:
path: downloads
- name: Move 'latest' tag to current commit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git tag -f latest
git push origin -f latest
- name: Create release (if missing) and upload artifacts to tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}