mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-16 23:20:12 +01:00
fix workflow execution for tags
This commit is contained in:
parent
fd75f93d77
commit
66cccd54c6
1 changed files with 18 additions and 1 deletions
|
|
@ -10,13 +10,28 @@ workflows:
|
|||
version: 2
|
||||
ci:
|
||||
jobs:
|
||||
- checkout
|
||||
- checkout:
|
||||
filters:
|
||||
branches:
|
||||
only: /.*/
|
||||
tags:
|
||||
only: /.*/
|
||||
- linting:
|
||||
requires:
|
||||
- checkout
|
||||
filters:
|
||||
branches:
|
||||
only: /.*/
|
||||
tags:
|
||||
only: /.*/
|
||||
- testing:
|
||||
requires:
|
||||
- checkout
|
||||
filters:
|
||||
branches:
|
||||
only: /.*/
|
||||
tags:
|
||||
only: /.*/
|
||||
- build:
|
||||
requires:
|
||||
- testing
|
||||
|
|
@ -24,6 +39,8 @@ workflows:
|
|||
filters:
|
||||
tags:
|
||||
ignore: /^v[0-9]+(\.[0-9]+)*$/
|
||||
branches:
|
||||
only: /.*/
|
||||
- publishing:
|
||||
requires:
|
||||
- testing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue