We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c18653c commit 001898bCopy full SHA for 001898b
.circleci/config.yml
@@ -70,8 +70,7 @@ jobs:
70
else
71
branch=$CIRCLE_BRANCH
72
fi
73
- # XXX: change branch to master
74
- if [[ $CIRCLE_TAG == "" ]] && [[ $CIRCLE_BRANCH != "docker-tag-release" ]]; then
+ if [[ $CIRCLE_TAG == "" ]] && [[ $CIRCLE_BRANCH != "master" ]]; then
75
echo "Not on a tag or master, skipped."
76
exit 0
77
@@ -118,12 +117,14 @@ workflows:
118
117
build-deploy:
119
jobs:
120
- build:
+ # Runs on all branches and tags matching /v.*/
121
filters:
122
tags:
123
only: /v.*/
124
- docker_release:
125
requires:
126
- build
127
+ # Only run on tags matching /v.*/
128
129
branches:
130
ignore: /.*/
0 commit comments