workflows: build and deploy: allow multi-digit revisions
According to github action syntax [1], there is no special character to denote a match on zero or more of the preceding character, so replace `[0-9]?` which only matches zero or one of the preceding characters with a `*`. [1] https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet [skip ci] Changelog-entry: trigger deploy builds on multi-digit revisions too Signed-off-by: Alex Gonzalez <alexg@balena.io>
This commit is contained in:
parent
44a6d1049e
commit
3c8d45dfce
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build_and_deploy.yml
vendored
2
.github/workflows/build_and_deploy.yml
vendored
|
@ -3,7 +3,7 @@ name: 'Deploy on release tag'
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- v[0-9]+.[0-9]+.[0-9]+\+?r?e?v?[0-9]?
|
||||
- v[0-9]+.[0-9]+.[0-9]+\+?r?e?v?*
|
||||
- v20[0-9][0-9].[0-1]?[1470].[0-9]+
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
|
|
Loading…
Add table
Reference in a new issue