From 7e844a3aa6a9cd5892ddede90f74d01e6f74a836 Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Tue, 5 Nov 2024 07:24:18 -0600 Subject: [PATCH] List tags after deleting latest release --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87ad0a3..5c12df0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,8 @@ jobs: gh release delete $TAG --yes || true git tag -d $TAG || true git push origin --delete $TAG || true + git fetch --tags + git tag -l git tag $TAG git push origin $TAG echo "RELEASE_TAG_NAME=$TAG" >> $GITHUB_OUTPUT