Skip to content

Commit

Permalink
chmod -x
Browse files Browse the repository at this point in the history
  • Loading branch information
tbro committed Oct 31, 2024
1 parent ac66e61 commit a34bdf2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit a34bdf2

Please sign in to comment.