fixed Tag?
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 34s

This commit is contained in:
alexander
2026-02-20 01:13:21 +01:00
parent 91180bbf48
commit 9147ed39d3

View File

@@ -56,9 +56,13 @@ jobs:
tag_name: "latest"
files: build/*.pdf
- name: Move Git Tag
- name: Remove old 'latest' tag and push new one
continue-on-error: true
run: git tag -d latest && git push origin :refs/tags/latest && git tag latest HEAD && git push origin latest
run: git tag -d latest && git push origin :refs/tags/latest
- name: Create 'latest' tag and push it
continue-on-error: true
run: git tag latest HEAD && git push origin latest
- name: Trigger
continue-on-error: true