Skip to content

Commit e59a87a

Browse files
committed
circleci config updated
1 parent e629952 commit e59a87a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.circleci/config.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,24 @@ jobs:
6565
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${CIRCLE_TAG} *.tgz
6666
workflows:
6767
version: 2
68+
build_only:
69+
jobs:
70+
- build:
71+
filters:
72+
branches:
73+
only: master
6874
build_and_publish:
6975
jobs:
70-
- build
76+
- build:
77+
filters:
78+
tags:
79+
only: /^v.*/
7180
- publish:
7281
requires:
7382
- build
7483
filters:
7584
tags:
7685
only: /^v.*/
86+
branches:
87+
ignore: /.*/
88+

0 commit comments

Comments
 (0)