Skip to content

Commit

Permalink
global-ci assumes image lives in /tmp
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Crossley <[email protected]>
  • Loading branch information
jcrossley3 committed Oct 7, 2024
1 parent 2be06c3 commit 4850544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build-container/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ runs:
# We save the container image here. But when loading it, the multi-arch aspect of it will be gone.
- name: Save image
shell: bash
run: podman save --multi-image-archive ${{ inputs.image_name }}:${{ inputs.image_tag }} > image.tar
run: podman save --multi-image-archive ${{ inputs.image_name }}:${{ inputs.image_tag }} > /tmp/image.tar

- uses: actions/upload-artifact@v4
with:
name: container
path: image.tar
path: /tmp/image.tar
if-no-files-found: error

0 comments on commit 4850544

Please sign in to comment.