Skip to content

Commit e819592

Browse files
committed
fix: Ignore master for dev workflow
1 parent c022843 commit e819592

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.circleci/config.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
compile:
2222
<<: *default_machine_job
2323
steps:
24-
- checkout
24+
- attach_workspace:
25+
at: ~/workdir
2526
- run:
2627
name: Get version
2728
command: |
@@ -37,6 +38,7 @@ jobs:
3738
- "*"
3839
- store_artifacts:
3940
path: bin
41+
4042
build_docker:
4143
<<: *default_machine_job
4244
steps:
@@ -102,7 +104,13 @@ workflows:
102104
version: 2
103105
publish:
104106
jobs:
105-
- compile
107+
- codacy/checkout_and_version:
108+
filters:
109+
branches:
110+
ignore: master
111+
- compile:
112+
requires:
113+
- codacy/checkout_and_version
106114
- build_docker:
107115
requires:
108116
- compile

0 commit comments

Comments
 (0)