From 8ebb553f4e04fab4268fd36f880d942c28158544 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Fri, 9 Aug 2024 19:51:29 -0700 Subject: [PATCH] fix: Create directory before accessing --- .github/workflows/profile.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/profile.yml b/.github/workflows/profile.yml index 2a2f475469..3144e27304 100644 --- a/.github/workflows/profile.yml +++ b/.github/workflows/profile.yml @@ -68,6 +68,7 @@ jobs: echo 'Available `linux-tools` versions are:' >> $GITHUB_STEP_SUMMARY apt list | grep -P linux\-tools\-[0-9\.\-]+\-azure >> $GITHUB_STEP_SUMMARY # Create a dummy file here so that we have something to upload. + mkdir -p ./testSuite/outputs touch ./testSuite/outputs/${{ inputs.name }}.${{ format('{0}',inputs.profiler) == 'perf' && 'perf.bz2' || 'gprof.bz2' }} fi else