Skip to content

Commit

Permalink
ci: Fix docker release task
Browse files Browse the repository at this point in the history
Signed-off-by: aeneasr <[email protected]>
  • Loading branch information
aeneasr committed Dec 13, 2018
1 parent a8d7f9f commit 7a0414f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,9 @@ jobs:
- checkout
- setup_remote_docker:
version: 17.10.0-ce
- run: docker build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile -t oryd/keto:$CIRCLE_TAG .
- run: docker build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile -t oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_') .
- run: docker login --username "$DOCKER_USERNAME" --password "$DOCKER_PASSWORD"
- run: docker tag oryd/keto:$CIRCLE_TAG oryd/keto:latest
- run: docker push oryd/keto:$CIRCLE_TAG
- run: docker push oryd/keto:latest
- run: docker push oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_') .

release-docs:
docker:
Expand Down

0 comments on commit 7a0414f

Please sign in to comment.