Skip to content

Commit

Permalink
Fix release workflow tag patterns (#1942)
Browse files Browse the repository at this point in the history
Clearly they aren't regex, so no optional groups (apparently not so clearly).

So much for not debugging on main.
  • Loading branch information
imsodin committed Jul 16, 2023
1 parent 546e943 commit 0021b97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
# Cannot filter on both branches (release) and tags - it's ORed
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-rc\.[0-9]+(\.[0-9]+)?'
- '[0-9]+.[0-9]+.[0-9]+-rc\.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-rc\.[0-9]+\.[0-9]+'

env:
# Our build metadata
Expand Down

0 comments on commit 0021b97

Please sign in to comment.