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
|
version: 2
|
||||||
ci:
|
ci:
|
||||||
jobs:
|
jobs:
|
||||||
- checkout
|
- checkout:
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only: /.*/
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
- linting:
|
- linting:
|
||||||
requires:
|
requires:
|
||||||
- checkout
|
- checkout
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only: /.*/
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
- testing:
|
- testing:
|
||||||
requires:
|
requires:
|
||||||
- checkout
|
- checkout
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only: /.*/
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
- build:
|
- build:
|
||||||
requires:
|
requires:
|
||||||
- testing
|
- testing
|
||||||
|
|
@ -24,6 +39,8 @@ workflows:
|
||||||
filters:
|
filters:
|
||||||
tags:
|
tags:
|
||||||
ignore: /^v[0-9]+(\.[0-9]+)*$/
|
ignore: /^v[0-9]+(\.[0-9]+)*$/
|
||||||
|
branches:
|
||||||
|
only: /.*/
|
||||||
- publishing:
|
- publishing:
|
||||||
requires:
|
requires:
|
||||||
- testing
|
- testing
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue