Skip to content

Commit

Permalink
Merge pull request #50 from patoarvizu/trigger-combined-manifest-push…
Browse files Browse the repository at this point in the history
…es-on-semver-tags

Add tag filters for all jobs
  • Loading branch information
patoarvizu authored Jan 1, 2022
2 parents f40e827 + 7656fbd commit 6343be5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,24 +278,42 @@ workflows:
jobs:
- test:
context: authentication-tokens
filters:
tags:
only: /^v\d+\.\d+.\d+$/
- build-and-push-amd64-image:
requires:
- test
context: authentication-tokens
filters:
tags:
only: /^v\d+\.\d+.\d+$/
- build-arm64-image:
requires:
- test
filters:
tags:
only: /^v\d+\.\d+.\d+$/
- push-arm64-image:
requires:
- build-arm64-image
context: authentication-tokens
filters:
tags:
only: /^v\d+\.\d+.\d+$/
- build-arm7-image:
requires:
- test
filters:
tags:
only: /^v\d+\.\d+.\d+$/
- push-arm7-image:
requires:
- build-arm7-image
context: authentication-tokens
filters:
tags:
only: /^v\d+\.\d+.\d+$/
- push-combined-image:
requires:
- build-and-push-amd64-image
Expand Down

0 comments on commit 6343be5

Please sign in to comment.