Skip to content

Commit 64f0d53

Browse files
committed
GitHubCI(publish): only consider tags that start with 'v'
It turns out that this was the standard for all previous tags but somehow I missed when tagging 0.21.2, d'oh! By doing this, if I make the same mistake again, the workflow won't start and no release will happen (until I push the proper tag).
1 parent 97e64a0 commit 64f0d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish
33
on:
44
push:
55
tags:
6-
- '*' # Publish on any new tag
6+
- 'v*' # Publish on any new tag
77

88
jobs:
99
build:

0 commit comments

Comments
 (0)