Skip to content

Commit 34ba74f

Browse files
CI: Quote regex to avoid syntax error
* Regex on tag must be quoted to avoid YAML syntax error.
1 parent 058c38a commit 34ba74f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
branches:
55
- main
66
tags:
7-
- [0-9]+.[0-9]+
8-
- [0-9]+.[0-9]+.[0-9]+
7+
- '[0-9]+.[0-9]+'
8+
- '[0-9]+.[0-9]+.[0-9]+'
99
pull_request:
1010
branches:
1111
- main

0 commit comments

Comments
 (0)