Fix GitHub Action tag pattern
GitHub Actions currently doesn't support regular expressions, but instead only "filter patterns". https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
This commit is contained in:
parent
8cd9fd79c6
commit
a33f1a975b
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -3,7 +3,7 @@ name: "Create GitHub release"
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v[0-9.]+"
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue