Skip to content

Commit

Permalink
Fix permission issue for docker unit tests script
Browse files Browse the repository at this point in the history
- Add a step to set executable permissions on $HOME/tooling/docker-unit-tests/docker-unit-tests.sh after cloning.
- This resolves the "Permission denied" error when running the test_74 command.
  • Loading branch information
zackkatz committed Feb 17, 2025
1 parent 803963b commit c73fafc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Clone GV Tooling
run: gh repo clone GravityKit/Tooling $HOME/tooling

- name: Make Docker Unit Tests Script Executable
run: chmod +x $HOME/tooling/docker-unit-tests/docker-unit-tests.sh

- name: Authenticate GitHub for Composer
env:
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
Expand Down

0 comments on commit c73fafc

Please sign in to comment.