Skip to content

Commit

Permalink
Whitespace errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Ekberg committed Nov 27, 2017
1 parent 9590214 commit b416a1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
- deploy:
name: Push application Docker image
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker push loadimpact/k6
elif [ "${CIRCLE_BRANCH}" == "develop" ]; then
elif [ "${CIRCLE_BRANCH}" == "develop" ]; then
docker tag loadimpact/k6 loadimpact/k6:develop
docker push loadimpact/k6:develop
elif [[ "${CIRCLE_TAG}" =~ ^v[0-9]+(\.[0-9]+)*$ ]]; then
elif [[ "${CIRCLE_TAG}" =~ ^v[0-9]+(\.[0-9]+)*$ ]]; then
docker tag loadimpact/k6 loadimpact/k6:${CIRCLE_TAG:1}
docker push loadimpact/k6:${CIRCLE_TAG:1}
fi
fi

0 comments on commit b416a1e

Please sign in to comment.