Skip to content

Commit

Permalink
fix deploy filters + only deploy tagged commits to dockerhub (#996)
Browse files Browse the repository at this point in the history
  • Loading branch information
spypsy authored Jul 10, 2023
1 parent f656079 commit ba5edac
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,21 @@ defaults: &defaults
- slack/notify:
event: fail
branch_pattern: "master"
deploy_defaults: &deploy_defaults
filters:
branches:
only:
- master
- stage
tags:
only: *tag_regex
context:
- build
- slack
post-steps:
- slack/notify:
event: fail
branch_pattern: "master"
yarn_project: &yarn_project
requires:
- yarn-project-base
Expand Down Expand Up @@ -861,14 +876,8 @@ workflows:
requires:
- e2e-end
- aztec-sandbox
filters:
branches:
only: master
<<: *defaults
<<: *deploy_defaults
- deploy-npm:
requires:
- e2e-end
filters:
branches:
only: master
<<: *defaults
<<: *deploy_defaults

0 comments on commit ba5edac

Please sign in to comment.