Skip to content

Commit 612368e

Browse files
authored
Merge pull request #69 from tahoe-lafs/68.trigger-on-release-tag
Trigger on the release tag pattern that we actually use The other one was wrong because it was expressed as a regex not as a GitHub Actions Workflows Tag Matching Filter Pattern.
2 parents a9f977b + b6ad762 commit 612368e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ on:
1010
- "master"
1111

1212
tags:
13-
# Do build on pushes to any release tag
14-
- "zfec-.*"
13+
# Do build on pushes to any release tag See
14+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
15+
# for documentation about how patterns are matched.
16+
- "zfec-*"
1517

1618
# Do build on pushes to any branch with an open pull request.
1719
pull_request:

0 commit comments

Comments
 (0)