mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
Fix release workflow tag patterns (#1942)
Clearly they aren't regex, so no optional groups (apparently not so clearly). So much for not debugging on main.
This commit is contained in:
parent
546e943e39
commit
0021b97a3e
1 changed files with 2 additions and 1 deletions
3
.github/workflows/build-app.yaml
vendored
3
.github/workflows/build-app.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue