Skip to content

Commit

Permalink
Update config CircleCi
Browse files Browse the repository at this point in the history
  • Loading branch information
onimur committed Jun 30, 2020
1 parent 8b451ec commit 88ee93d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,17 @@ jobs:

workflows:
version: 2
build-and-deploy:
untagged-build: #runs job for all branches.
jobs:
- prepare
tagged-build: # run job for all tags
jobs:
- prepare:
filters: # required since `deploy` has tag filters AND requires `build`
branches:
ignore: /.*/
tags:
only: /.*/
- publish-github-release:
requires:
- prepare
Expand Down

0 comments on commit 88ee93d

Please sign in to comment.