update pipeline do delete tag if already exist for prerelease

This commit is contained in:
Zane Schepke 2024-07-29 00:39:55 -04:00
parent b15c492f87
commit a02bc0c87f
1 changed files with 2 additions and 1 deletions

View File

@ -147,7 +147,8 @@ jobs:
- name: On prerelease release notes
if: ${{ inputs.release_type == 'prerelease' }}
run: |
echo "RELEASE_NOTES=Testing version of app for specific feature." >> $GITHUB_ENV
echo "RELEASE_NOTES=Testing version of app for specific feature." >> $GITHUB_ENV
gh release delete ${{ github.event.inputs.tag_name }} --yes || true
# Setup TAG_NAME, which is used as a general "name"
- if: github.event_name == 'workflow_dispatch'