refactor(workflow): delete remote tag before pushing in prepare release

This commit is contained in:
courtmanr@gmail.com
2025-04-30 20:30:29 +01:00
parent 1d0c43f10d
commit b25d021503
+3
View File
@@ -62,5 +62,8 @@ jobs:
- name: Create Git Tag
run: git tag ${{ steps.version_bump.outputs.new_version_tag }}
- name: Delete Remote Tag if Exists (Ignore Errors)
run: git push --delete origin ${{ steps.version_bump.outputs.new_version_tag }} || true
- name: Push Git Tag
run: git push origin ${{ steps.version_bump.outputs.new_version_tag }}