Skip to content

Commit

Permalink
fix(ci): fixing the docker build step in the CI release workflow (#1392)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusoe authored Apr 19, 2022
1 parent 23c9a01 commit cd6dbd7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,17 @@ jobs:
working_directory: ~/inspectit
steps:
- attach_repo
- setup_remote_docker:
version: 20.10.12
- run: cd repo && ./gradlew dockerTag -PbuildVersion=${CIRCLE_TAG}
- run: docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_PASSWORD
- run: docker push
- run: |
docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_PASSWORD
docker push inspectit/inspectit-ocelot-agent:${CIRCLE_TAG}
docker push inspectit/inspectit-ocelot-agent:latest
docker push inspectit/inspectit-ocelot-configurationserver:${CIRCLE_TAG}
docker push inspectit/inspectit-ocelot-configurationserver:latest
docker push inspectit/inspectit-ocelot-eum-server:${CIRCLE_TAG}
docker push inspectit/inspectit-ocelot-eum-server:latest
# Deploy pre-release documentation
deploy-master-documentation:
Expand Down

0 comments on commit cd6dbd7

Please sign in to comment.