Skip to content

Commit

Permalink
Fix release tag check
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Oct 18, 2021
1 parent 34c1cc7 commit 3bed7df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: release
on:
"on":
push:
tags: [ "v*.[0-99]" ] # only a valid semver tag
tags:
- v*.*.*
- '!v*.*.*-**'

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 3bed7df

Please sign in to comment.