Skip to content

Commit

Permalink
fix(ci): replace [0-9]+ with *
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Oct 23, 2020
1 parent 9e34cf1 commit 67c66b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: beta release
on:
create:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
- 'v*.*.*-beta.*'

jobs:
create_release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: release
on:
create:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- '!v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
- 'v*.*.*'
- '!v*.*.*-beta.*'

jobs:
create_release:
Expand Down

0 comments on commit 67c66b0

Please sign in to comment.