Skip to content

Commit 9def01d

Browse files
workflows: fix windows check for container image (#10572)
* workflows: fix windows check for container image Signed-off-by: Eduardo Silva <[email protected]> --------- Signed-off-by: Eduardo Silva <[email protected]> Signed-off-by: Pat <[email protected]> Co-authored-by: Pat <[email protected]>
1 parent 1af29e7 commit 9def01d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/staging-release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,9 @@ jobs:
587587
password: ${{ secrets.GITHUB_TOKEN }}
588588

589589
- name: Check the image exists
590+
# Use manifest inspect rather than pulling the image so the Windows host version does not need to match the container image
590591
run: |
591-
docker pull "$STAGING_IMAGE_NAME:$TAG"
592+
docker manifest inspect "$STAGING_IMAGE_NAME:$TAG"
592593
env:
593594
TAG: ${{ matrix.tag }}
594595
shell: bash

0 commit comments

Comments
 (0)