From 478af97ae7b08aebf1f85b3e14722badada4cbc5 Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Sun, 9 Nov 2025 22:17:36 +0100 Subject: [PATCH] fix github action not updating the latest tag --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 68cbb25..687e355 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }}