Skip to content

Commit

Permalink
Merge pull request #6 from Davilarek/patch-3
Browse files Browse the repository at this point in the history
Fix aborting if no tag exists
  • Loading branch information
vzze authored May 13, 2023
2 parents c9318e0 + be5c331 commit c829e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# tag-name: "devbuild"
- name: Create Dev release
run: |
if ! gh release view devbuild 2>/dev/null; then gh release create devbuild --verify-tag; fi
if ! gh release view devbuild 2>/dev/null; then gh release create devbuild; fi
gh release upload devbuild --clobber extension.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit c829e7e

Please sign in to comment.