From e4d1bbc28925db11bbd079fb34e736bc46edf40d Mon Sep 17 00:00:00 2001 From: Markus Dobel Date: Mon, 27 Nov 2023 18:41:04 +0100 Subject: [PATCH] fix: ensure mount point folder exists --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index e3d9ba1..fca2962 100644 --- a/action.yml +++ b/action.yml @@ -111,6 +111,9 @@ runs: fi echo + # ensure mount path exists + mkdir -p "${BUILD_MOUNT_PATH}" + echo "Removing unwanted software... " if [[ ${{ inputs.remove-dotnet }} == 'true' ]]; then sudo rm -rf /usr/share/dotnet