From b75f28a1307f035127eca4f41a09d77d852c6cf0 Mon Sep 17 00:00:00 2001 From: Alex Axthelm Date: Mon, 19 Aug 2024 11:39:09 +0200 Subject: [PATCH] create ANALYSIS_OUTPUT_DIR in cwd --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bc145da..25a6d0f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -80,8 +80,8 @@ jobs: WORKSPACE: ${{ github.workspace }} PARAMETERS: ${{ steps.prepare.outputs.parameters }} run: | - mkdir -p "${WORKSPACE}/${ANALYSIS_OUTPUT_DIR}" - chmod -R 666 "${WORKSPACE}/${ANALYSIS_OUTPUT_DIR}" + mkdir -p "${ANALYSIS_OUTPUT_DIR}" + chmod -R 666 "${ANALYSIS_OUTPUT_DIR}" docker run \ --network none \ --env LOG_LEVEL=DEBUG \