Skip to content

Commit

Permalink
ci(circle): fix deploy on tag release (#192)
Browse files Browse the repository at this point in the history
for tag jobs to run dependent jobs must specify tags as well
  • Loading branch information
hannahhoward committed Jun 9, 2021
1 parent 3890009 commit 16eebeb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Expand Up @@ -93,10 +93,16 @@ workflows:
version: 2.1
ci:
jobs:
- build-and-test
- build-and-test:
filters:
tags:
only: /^v[0-9]+(\.[0-9]+)*$/
- build-push:
requires:
- build-and-test
filters:
tags:
only: /^v[0-9]+(\.[0-9]+)*$/
- deploy-lotusinfra:
name: deploy-nerpanet
circle_context: sentinel-staging-deploy
Expand Down

0 comments on commit 16eebeb

Please sign in to comment.