Skip to content

Commit

Permalink
Merge pull request tahoe-lafs#69 from tahoe-lafs/68.trigger-on-releas…
Browse files Browse the repository at this point in the history
…e-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.
  • Loading branch information
exarkun authored Feb 24, 2022
2 parents a9f977b + b6ad762 commit 612368e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ on:
- "master"

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

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

0 comments on commit 612368e

Please sign in to comment.