Skip to content

Commit 73525c9

Browse files
authored
fix: update tag regex in github action (#403)
1 parent 9634c3f commit 73525c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release-rc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: Release to NPM when a tag is pushed
1+
name: Publishing Release Candidate
22

33
on:
44
push:
55
tags:
6-
- "v*.*.*-rc.*"
6+
- "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
77

88
jobs:
99
release:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release to NPM when a tag is pushed
33
on:
44
push:
55
tags:
6-
- "v*.*.*"
6+
- "v[0-9]+.[0-9]+.[0-9]+"
77

88
jobs:
99
release:

0 commit comments

Comments
 (0)