Skip to content

Commit

Permalink
Merge pull request #259 from MODFLOW-USGS/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
wpbonelli authored Feb 6, 2025
2 parents 97758f9 + eb2d9ac commit c416999
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ex-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,10 @@ jobs:
github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release delete $TAG -y --cleanup-tag
run: |
if gh release view $TAG; then
gh release delete $TAG --yes --cleanup-tag
fi
- name: Create new release
if: |
Expand Down

0 comments on commit c416999

Please sign in to comment.