Skip to content

Commit 001898b

Browse files
committed
Dearm test; only run autobuild on master
1 parent c18653c commit 001898b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.circleci/config.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ jobs:
7070
else
7171
branch=$CIRCLE_BRANCH
7272
fi
73-
# XXX: change branch to master
74-
if [[ $CIRCLE_TAG == "" ]] && [[ $CIRCLE_BRANCH != "docker-tag-release" ]]; then
73+
if [[ $CIRCLE_TAG == "" ]] && [[ $CIRCLE_BRANCH != "master" ]]; then
7574
echo "Not on a tag or master, skipped."
7675
exit 0
7776
fi
@@ -118,12 +117,14 @@ workflows:
118117
build-deploy:
119118
jobs:
120119
- build:
120+
# Runs on all branches and tags matching /v.*/
121121
filters:
122122
tags:
123123
only: /v.*/
124124
- docker_release:
125125
requires:
126126
- build
127+
# Only run on tags matching /v.*/
127128
filters:
128129
branches:
129130
ignore: /.*/

0 commit comments

Comments
 (0)