From eeec36e362c0bf98364e4ca105f87caa1e465662 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Thu, 5 Sep 2024 09:38:44 +0200 Subject: [PATCH] Make sure to chmod first --- .github/workflows/create-test-input-file.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-test-input-file.yaml b/.github/workflows/create-test-input-file.yaml index 6804818..ad02f83 100644 --- a/.github/workflows/create-test-input-file.yaml +++ b/.github/workflows/create-test-input-file.yaml @@ -32,7 +32,8 @@ jobs: EOF - docker exec container /bin/bash -c /${name}/script_container.sh + chmod +x ${GITHUB_WORKSPACE}/script_container.sh + docker exec container /bin/bash -c /${GITHUB_WORKSPACE}/script_container.sh - name: Upload test input file uses: actions/upload-artifact@v2