Skip to content

Commit b4675db

Browse files
authored
Properly quote workflow tag push filter in yaml (#8284)
For some reason it's necessary to quote `*`, but not necessary to quote `release-*`. Also, switch from a single `*` to a double `**` to catch tag names that contain `/`.
1 parent 7d5adcd commit b4675db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Build release
77
on:
88
push:
99
tags:
10-
- *
10+
- '**'
1111

1212
jobs:
1313
push-release:

0 commit comments

Comments
 (0)