From 16c9a1f99efcfd9051274c6dbdca9ee6d50cba58 Mon Sep 17 00:00:00 2001 From: Aaron Dalton Date: Thu, 18 Jan 2024 20:53:35 -0800 Subject: [PATCH] Delete existing tag --- .github/workflows/fork-sync.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/fork-sync.yml b/.github/workflows/fork-sync.yml index 959086e0..f4c5bbf1 100644 --- a/.github/workflows/fork-sync.yml +++ b/.github/workflows/fork-sync.yml @@ -44,8 +44,7 @@ jobs: git checkout -b release/${TAG} ${TAG} git rev-list --no-merges --reverse origin/feature/add_auth ^upstream | git cherry-pick --stdin git rev-list --no-merges --reverse origin/fork/automation ^upstream -- .github/**| git cherry-pick --stdin - git tag -d ${TAG} - git tag ${TAG} release/${TAG} + git tag -d ${TAG} release/${TAG} done for TAG in ${NEW_TAGS}; do git push -u origin release/${TAG} ${TAG}; done working-directory: homepage