From 3a4b9ae3f1a1d7e88b37c4f1ad89f1818a0018c7 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 4 Sep 2024 20:07:52 +0200 Subject: [PATCH] Copy instead of move the compiler artifacts --- .github/workflows/build-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index c875ef2e..ce26c3e1 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -584,7 +584,7 @@ jobs: # Save the built libraries for the next job: rm -fr /rust-cache/target - mv target /rust-cache + cp -Rp target /rust-cache - name: Debug if: ${{ env.SKIP != 'true' }}