From a34bdf2253c30d590707d7837ed561dcbe08e943 Mon Sep 17 00:00:00 2001 From: tbro Date: Wed, 30 Oct 2024 20:54:50 -0600 Subject: [PATCH] chmod -x --- .github/workflows/test.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c0b91402..a57fc9412 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -177,11 +177,13 @@ jobs: - name: Move files run: | mv nextest-archive/* . - mkdir -p target/debug && mv test-binaries/* target/debug + mkdir -p target/debug + mv test-binaries/* target/debug + chmod -x test-binaries/* - name: debug run: | - ls target/debug + ls -l target/debug echo $PATH echo "$PWD/target/debug" @@ -230,10 +232,12 @@ jobs: - name: Download archive uses: actions/download-artifact@v4 - - name: Move files + - name: Move files run: | mv nextest-archive/* . - mkdir -p target/debug && mv test-binaries/* target/debug + mkdir -p target/debug + mv test-binaries/* target/debug + chmod -x test-binaries/* - name: Test Demo run: |