Skip to content

Commit

Permalink
Fix circle.yml to actually deploy external ui changes (#1910)
Browse files Browse the repository at this point in the history
Conditional was the wrong way around.
  • Loading branch information
ekimekim authored and tomwilkie committed Oct 8, 2016
1 parent 727404c commit 2bc31e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ deployment:
docker push ${DOCKER_ORGANIZATION:-$DOCKER_USER}/scope:$(./tools/image-tag) &&
docker push ${DOCKER_ORGANIZATION:-$DOCKER_USER}/scope-traffic-control-plugin &&
docker push ${DOCKER_ORGANIZATION:-$DOCKER_USER}/scope-traffic-control-plugin:$(./tools/image-tag) &&
(test -n "${UI_BUCKET_KEY_ID}" || (
(test -z "${UI_BUCKET_KEY_ID}" || (
make ui-upload
)) &&
(test "${DOCKER_ORGANIZATION:-$DOCKER_USER}" != "weaveworks" || (
Expand Down

0 comments on commit 2bc31e8

Please sign in to comment.