Skip to content

Commit c4e7632

Browse files
Fix GitHub Actions yaml
Signed-off-by: Jacob Weinstock <[email protected]>
1 parent f3cf326 commit c4e7632

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-all-matrix.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ jobs:
9393
DOCKER_ARCH: "${{ matrix.docker_arch }}"
9494
DO_PUSH: "${{ github.ref == 'refs/heads/main' && 'yes' || 'no' }}"
9595
EXPORT_LK_CONTAINERS: "yes"
96-
EXPORT_LK_CONTAINERS_DIR: "{{ runner.temp }}"
96+
EXPORT_LK_CONTAINERS_DIR: "${{ runner.temp }}"
9797
run: bash build.sh linuxkit-containers
9898

9999
- name: Upload Linuxkit Docker images as GitHub Artifacts
100100
uses: actions/upload-artifact@v4
101101
with:
102102
name: linuxkit-images-${{ matrix.docker_arch }}
103-
path: "{{ runner.temp }}"/*-${{ matrix.docker_arch }}.tar.gz
103+
path: ${{ runner.temp }}/*-${{ matrix.docker_arch }}.tar.gz
104104

105105
build-kernels:
106106
needs: [ matrix_prep ] # depend on the previous job...
@@ -133,14 +133,14 @@ jobs:
133133
env:
134134
DO_PUSH: "${{ github.ref == 'refs/heads/main' && 'yes' || 'no' }}"
135135
EXPORT_KERNEL_IMAGE: "yes"
136-
EXPORT_KERNEL_IMAGE_DIR: "{{ runner.temp }}"
136+
EXPORT_KERNEL_IMAGE_DIR: "${{ runner.temp }}"
137137
run: bash build.sh build-kernel "${{ matrix.kernel }}"
138138

139139
- name: Upload Kernel Docker images as GitHub Artifacts
140140
uses: actions/upload-artifact@v4
141141
with:
142142
name: kernel-images-${{ matrix.docker_arch }}
143-
path: "{{ runner.temp }}"/hook-kernel-*.tar.gz
143+
path: ${{ runner.temp }}/hook-kernel-*.tar.gz
144144

145145
build-hook-ensemble:
146146
needs: [ matrix_prep, build-linuxkit-containers, build-kernels ] # depend on the previous job...
@@ -193,7 +193,7 @@ jobs:
193193

194194
- name: Load Linuxkit Docker images into local Docker daemon
195195
run: |
196-
for img in "{{ runner.temp }}"/hook-*.tar.gz; do
196+
for img in "${{ runner.temp }}"/hook-*.tar.gz; do
197197
gunzip -d "$img"
198198
docker load -i "$img"
199199
done
@@ -206,7 +206,7 @@ jobs:
206206

207207
- name: Load Kernel Docker images into local Docker daemon
208208
run: |
209-
for img in "{{ runner.temp }}"/kernel-*.tar.gz; do
209+
for img in "${{ runner.temp }}"/kernel-*.tar.gz; do
210210
gunzip -d "$img"
211211
docker load --input "$img"
212212
done

0 commit comments

Comments
 (0)