From 311c96828f9ab4f4f67c8e4d33828b45083b2abd Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Tue, 5 Nov 2024 07:16:49 -0600 Subject: [PATCH] Delete tag as well --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc5cc54..9fb4075 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,10 @@ jobs: git config --global user.email "github-actions@github.com" TAG="dev" gh release delete $TAG --yes - git tag "$TAG" - git push origin "$TAG" + git tag -d $TAG + git push origin $TAG + git tag $TAG + git push origin $TAG echo "RELEASE_TAG_NAME=$TAG" >> $GITHUB_OUTPUT build_and_test: needs: generate-config