From b626720eb0bc48e1591200e49d0862cafb70a709 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 10 Jun 2024 22:03:59 +0200 Subject: [PATCH] Create the destination qemu directory, as needed --- .github/workflows/build-and-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 2b412121..4ab0051e 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -281,6 +281,7 @@ jobs: - name: Add the built runner image to the cache if: steps.linux_arm_cache.outputs.cache-hit != 'true' run: | + mkdir -p qemu mv ${{ steps.build-linux-arm-runner.outputs.image }} qemu/linux_arm_qemu_cache.img - name: Compiling the Rust runtime @@ -313,6 +314,7 @@ jobs: - name: Update the runner image to cache the Rust runtime build run: | + mkdir -p qemu mv ${{ steps.build-linux-arm.outputs.image }} qemu/linux_arm_qemu_cache.img - name: Upload artifact (Linux - Debian Package)