Skip to content

Commit 2d13acf

Browse files
committed
.github/workflows/deploy_release.yml: Fix tag selection
These are not regular expressions, see [1]. So let's use something really simple instead. [1]: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#filter-pattern-cheat-sheet
1 parent 62e612d commit 2d13acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy release
22
on:
33
push:
44
tags:
5-
- '^v\d+(\.\d+)*(\.[0-9A-Za-z]*)*'
5+
- '^v[0-9]+.[0-9]+.[0-9]+'
66

77
jobs:
88
common-actions:

0 commit comments

Comments
 (0)