Skip to content

Commit

Permalink
potential Docker push fix
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Jul 27, 2021
1 parent 88f20b9 commit 2c67047
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
for registry in docker.io/{dvcorg,iterativeai} ghcr.io/iterative; do
[[ "${{ matrix.latest }}" == "true" ]] && echo "${registry}/cml:latest"
echo "${registry}/cml:${tag}"
done | tr '\n' ',' | head -c-1
done | head -c-1
)"
- uses: docker/setup-buildx-action@v1
- uses: actions/cache@v2
Expand Down Expand Up @@ -150,7 +150,8 @@ jobs:
'schedule' }}
context: ./
file: ./Dockerfile
tags: ${{ steps.metadata.outputs.tags }}
tags: |
${{ steps.metadata.outputs.tags }}
build-args: |
CML_VERSION=${{ steps.metadata.outputs.cml_version }}
DVC_VERSION=${{ matrix.dvc }}
Expand Down

0 comments on commit 2c67047

Please sign in to comment.