Skip to content

Commit 36f5c9f

Browse files
authored
broaden the publish tag regex to allow digits (#2085)
Should fix #2084
1 parent c6a1061 commit 36f5c9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ on:
77
pull_request:
88
branches: [ main ]
99
push:
10-
tags: [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+' ]
10+
# Match <package-name>-v<version> publish tags
11+
tags: [ '[A-z0-9]+-v[0-9]+.[0-9]+.[0-9]+' ]
1112

1213
jobs:
1314
publish:

0 commit comments

Comments
 (0)