Skip to content

Commit

Permalink
whew
Browse files Browse the repository at this point in the history
  • Loading branch information
itsderek23 committed May 9, 2020
1 parent a74fa2b commit 4482611
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,30 +41,17 @@ jobs:
path: test_results
workflows:
version: 2
untagged-build:
build_and_deploy:
jobs:
- test:
context: whisk
filters:
tags:
ignore: /.*/
tagged-build:
# CircleCI does not run workflows for tags unless you explicitly specify tag filters.
# Additionally, if a job requires any other jobs (directly or indirectly),
# you must use regular expressions to specify tag filters for those jobs.
# https://circleci.com/docs/2.0/workflows/#executing-workflows-for-a-git-tag
jobs:
- test:
context: whisk
filters:
tags:
only: /.*/
branches:
ignore: /.*/
- deploy:
context: whisk
requires:
- test
filters:
tags:
only: /^v[0-9]+.*/
only: /^v[0-9]+(\.[0-9]+)*/
branches:
ignore: /.*/

0 comments on commit 4482611

Please sign in to comment.