File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -77,14 +77,18 @@ jobs:
77
77
cp ./.github/workflows/containers/github-action-ci/storage.conf ~/.config/containers/storage.conf
78
78
podman info
79
79
80
+ # Download the container image into /mnt/podman rather than
81
+ # $GITHUB_WORKSPACE to avoid space limitations on the default drive
82
+ # and use the permissions setup for /mnt/podman.
80
83
- name : Download stage1-toolchain
81
84
uses : actions/download-artifact@v4
82
85
with :
83
86
name : stage1-toolchain
87
+ path : /mnt/podman
84
88
85
89
- name : Load stage1-toolchain
86
90
run : |
87
- podman load -i stage1-toolchain.tar
91
+ podman load -i /mnt/podman/ stage1-toolchain.tar
88
92
89
93
- name : Build Container
90
94
working-directory : ./.github/workflows/containers/github-action-ci/
You can’t perform that action at this time.
0 commit comments