Skip to content

Commit

Permalink
ci: Use proper project name
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Nov 14, 2018
1 parent dcbe28b commit 492e3d6
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 @@ -109,11 +109,11 @@ jobs:
- setup_remote_docker:
version: 17.10.0-ce
# Build and push docker image
- 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 build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile-alpine -t oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_')-alpine .
- run: docker build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile -t oryd/hydra:$(echo $CIRCLE_TAG | tr '+' '_') .
- run: docker build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile-alpine -t oryd/hydra:$(echo $CIRCLE_TAG | tr '+' '_')-alpine .
- run: docker login --username "$DOCKER_USERNAME" --password "$DOCKER_PASSWORD"
- run: docker push oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_')
- run: docker push oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_')-alpine
- run: docker push oryd/hydra:$(echo $CIRCLE_TAG | tr '+' '_')
- run: docker push oryd/hydra:$(echo $CIRCLE_TAG | tr '+' '_')-alpine

release-npm:
docker:
Expand Down

0 comments on commit 492e3d6

Please sign in to comment.