mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
[CI] fix the ci image name for public copy in ghcr (#156169)
After the PR #152209 landed, the name of ci image public copy in ghcr is not correct. For example, https://github.com/pytorch/pytorch/actions/runs/15698468716/job/44228133522#step:10:8. Pull Request resolved: https://github.com/pytorch/pytorch/pull/156169 Approved by: https://github.com/malfet
This commit is contained in:
parent
a6a3a44144
commit
c5a4fe9c17
2
.github/workflows/_linux-build.yml
vendored
2
.github/workflows/_linux-build.yml
vendored
|
|
@ -190,7 +190,7 @@ jobs:
|
||||||
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
tag=${ECR_DOCKER_IMAGE##*/}
|
tag=${ECR_DOCKER_IMAGE##*:}
|
||||||
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
||||||
|
|
||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
|
|
|
||||||
2
.github/workflows/_linux-test.yml
vendored
2
.github/workflows/_linux-test.yml
vendored
|
|
@ -131,7 +131,7 @@ jobs:
|
||||||
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
tag=${ECR_DOCKER_IMAGE##*/}
|
tag=${ECR_DOCKER_IMAGE##*:}
|
||||||
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
||||||
|
|
||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
|
|
|
||||||
2
.github/workflows/_xpu-test.yml
vendored
2
.github/workflows/_xpu-test.yml
vendored
|
|
@ -105,7 +105,7 @@ jobs:
|
||||||
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
tag=${ECR_DOCKER_IMAGE##*/}
|
tag=${ECR_DOCKER_IMAGE##*:}
|
||||||
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
||||||
|
|
||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
ECR_DOCKER_IMAGE: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
tag=${ECR_DOCKER_IMAGE##*/}
|
tag=${ECR_DOCKER_IMAGE##*:}
|
||||||
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
echo "docker pull ghcr.io/pytorch/ci-image:${tag/:/-}"
|
||||||
|
|
||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user