Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliano Petronetto committed Jan 20, 2018
1 parent 0118a2a commit cce9736
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
- run:
name: Push the develop tag
command: |
if [ "$ {CIRCLE_BRANCH}" == "develop" ]; then
if [ "${CIRCLE_BRANCH}" == "develop" ]; then
docker tag petronetto/pytorch-alpine petronetto/pytorch-alpine:develop
docker push petronetto/pytorch-alpine:develop
fi
- run:
name: Push the latest tag
command: |
if [ "$ {CIRCLE_BRANCH}" == "master" ]; then
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker tag petronetto/pytorch-alpine petronetto/pytorch-alpine:latest
docker push petronetto/pytorch-alpine:latest
fi
Expand Down

0 comments on commit cce9736

Please sign in to comment.