Skip to content

Commit 88ee93d

Browse files
committed
Update config CircleCi
1 parent 8b451ec commit 88ee93d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,17 @@ jobs:
9595

9696
workflows:
9797
version: 2
98-
build-and-deploy:
98+
untagged-build: #runs job for all branches.
9999
jobs:
100100
- prepare
101+
tagged-build: # run job for all tags
102+
jobs:
103+
- prepare:
104+
filters: # required since `deploy` has tag filters AND requires `build`
105+
branches:
106+
ignore: /.*/
107+
tags:
108+
only: /.*/
101109
- publish-github-release:
102110
requires:
103111
- prepare

0 commit comments

Comments
 (0)