From fad4d5773f6aaeb9f61309548955cb492446b251 Mon Sep 17 00:00:00 2001 From: Joe Wang Date: Thu, 15 Feb 2024 14:27:15 -0500 Subject: [PATCH] chore: fix workflow to create additional tags --- .github/workflows/create_additional_release_tag.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create_additional_release_tag.yaml b/.github/workflows/create_additional_release_tag.yaml index 892a821788..0bc731c127 100644 --- a/.github/workflows/create_additional_release_tag.yaml +++ b/.github/workflows/create_additional_release_tag.yaml @@ -38,6 +38,8 @@ jobs: # Use fixed tag so that checks in handwritten libraries do not need to # update the version. CHECK_LATEST_TAG="unmanaged-dependencies-check-latest" + # delete and create the tag locally. + git tag --delete ${CHECK_LATEST_TAG} git tag ${CHECK_LATEST_TAG} # delete the tag in remote repo and push again. git push --delete origin ${CHECK_LATEST_TAG}