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

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

View File

@ -95,7 +95,7 @@ jobs:
git push origin --delete nightly
git tag nightly
git push origin nightly
gh release delete ${{ env.VERSION }} -y
gh release delete ${{ env.VERSION }} -y || true
gh release create ${{ env.VERSION }} -t "Nightly" -n "$(git rev-parse HEAD | cut -c 1-7) | $(git log -1 --pretty=%B)" ${{ env.FILES }}
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'