File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 3131 --build-arg GCC_VERSION=${{ matrix.version.gcc }} \
3232 --tag ${DOCKER_REGISTRY}/${{ github.repository }}/${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}
3333 - name : Push the Docker image
34- run : docker push ${DOCKER_REGISTRY}/${{ github.repository }}/${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}
34+ run : |
35+ # Convert the repository name to lowercase as the organization name is
36+ # uppercase, which is not permitted by the Docker registry.
37+ DOCKER_REPOSITORY=${GITHUB_REPOSITORY,,}
38+ docker push ${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${{ github.repository }}/${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}
3539
3640 # Build the Docker image for Ubuntu using different versions of Clang.
3741 clang :
5761 --build-arg CLANG_VERSION=${{ matrix.version.clang }} \
5862 --tag ${DOCKER_REGISTRY}/${{ github.repository }}/${{ matrix.version.os }}:clang${{ matrix.version.clang }}
5963 - name : Push the Docker image
60- run : docker push ${DOCKER_REGISTRY}/${{ github.repository }}/${{ matrix.version.os }}:clang${{ matrix.version.clang }}
64+ run : |
65+ # Convert the repository name to lowercase as the organization name is
66+ # uppercase, which is not permitted by the Docker registry.
67+ DOCKER_REPOSITORY=${GITHUB_REPOSITORY,,}
68+ docker push ${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${{ matrix.version.os }}:clang${{ matrix.version.clang }}
You can’t perform that action at this time.
0 commit comments