Skip to content

Commit

Permalink
Update self_runner_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
christabone authored Jun 21, 2024
1 parent d7bae4b commit d68d8c9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/self_runner_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ jobs:
runs-on: self-hosted

steps:
- name: Cleanup build folder
run: |
echo "Current directory:"
pwd
echo "Listing all files and folders before cleanup:"
ls -la ./
echo "Cleaning up build folder..."
rm -rf ./* || true
rm -rf ./.??* || true
echo "Listing all files and folders after cleanup:"
ls -la ./
- name: Checkout repository
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit d68d8c9

Please sign in to comment.