From 1973325c5e8063b43ca729dbf2e023d7770274d6 Mon Sep 17 00:00:00 2001 From: Florian Hammerschmidt Date: Wed, 26 Feb 2025 13:32:54 +0100 Subject: [PATCH] Try to fix latest-master release --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb3fdb8e5..1d4af6f39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -239,9 +239,11 @@ jobs: - name: Move latest-master tag to current commit if: github.ref == 'refs/heads/master' - uses: jimeh/update-tags-action@v1 - with: - tags: "latest-master" + run: | + git tag -d latest-master || true + git push origin --delete latest-master || true + git tag latest-master + git push origin latest-master - name: Publish latest master to GitHub if: github.ref == 'refs/heads/master'