Skip to content

Commit

Permalink
pull cross-platform image first before saving
Browse files Browse the repository at this point in the history
  • Loading branch information
qindotguan committed Feb 2, 2025
1 parent f7f6301 commit dd4f560
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ jobs:
- name: Save the image for consumption by dependent jobs (PRs only)
if: ${{ github.event_name == 'pull_request' }}
run: |
docker pull ${{ steps.legacy_vertica_image.outputs.value }}
docker save ${{ steps.legacy_vertica_image.outputs.value }} > legacy-vertica-image.tar
- uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -391,6 +392,7 @@ jobs:
- name: Save the image for consumption by dependent jobs (PRs only)
if: ${{ github.event_name == 'pull_request' }}
run: |
docker pull ${{ steps.operator_image.outputs.value }}
docker save ${{ steps.operator_image.outputs.value }} > operator-image.tar
- uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -508,6 +510,7 @@ jobs:
- name: Save the image for consumption by dependent jobs (PRs only)
if: ${{ github.event_name == 'pull_request' }}
run: |
docker pull ${{ steps.vlogger_image.outputs.value }}
docker save ${{ steps.vlogger_image.outputs.value }} > vlogger-image.tar
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit dd4f560

Please sign in to comment.