[CI > Release] Don't fail on tag delete error (2)

This commit is contained in:
Ducko 2022-02-15 20:28:55 +00:00
parent c6066e82f6
commit f8742200c4
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ jobs:
- name: GitHub Release
run: |
git tag -d nightly
git push origin --delete nightly
git tag -d nightly || true
git push origin --delete nightly || true
git tag nightly
git push origin nightly
gh release delete ${{ env.VERSION }} -y || true