Skip to content

Commit

Permalink
Workflow non root user fix 6
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-fazil committed Aug 21, 2024
1 parent 7a97ab6 commit 350f41b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
steps:
# The "cleanup old checkout" step is needed because of this bug: https://github.com/actions/checkout/issues/1014
- name: cleanup old checkout
run: sudo chmod +w -R ${GITHUB_WORKSPACE}; rm -rf ${GITHUB_WORKSPACE}/*;
run: |
echo "Current directory is $(pwd)"
echo "Present files are $(ls)"
sudo chmod +w -R ${GITHUB_WORKSPACE}; rm -rf ${GITHUB_WORKSPACE}/*;
- uses: actions/checkout@v4
- name: Configure working direcotry
run: |
Expand Down

0 comments on commit 350f41b

Please sign in to comment.