Skip to content

Commit

Permalink
Fix publish_docker_images CI step (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch authored Aug 27, 2023
1 parent 68b1cf1 commit 3316d48
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,12 @@ jobs:
docker_layer_caching: true
- run:
name: Authenticate to Docker Hub
command: echo "${DOCKERHUB_ACCESS_TOKEN}" | \
docker login --username "${DOCKERHUB_USERNAME}" --password-stdin
command: |
echo "${DOCKERHUB_ACCESS_TOKEN}" | \
docker login --username "${DOCKERHUB_USERNAME}" --password-stdin
- run:
name: Enable multiarch builds with QEMU
command: ./dev-scripts/enable-multiarch-docker
- run:
name: Publish docker images
command: |
Expand Down

0 comments on commit 3316d48

Please sign in to comment.