Skip to content

Commit

Permalink
Add cleanup working directory for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
kuznetsss committed Dec 15, 2023
1 parent b1dc277 commit eb8e646
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/actions/prepare_runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ runs:
run: |
brew install llvm@14 pkg-config ninja bison cmake ccache jq gh
- name: Cleanup working directory
if: ${{ runner.os == 'macOS' }}
shell: bash
run: |
find ${{ github.workspace }}/ -depth 1 | xargs rm -rfv
- name: Fix git permissions on Linux
if: ${{ runner.os == 'Linux' }}
shell: bash
Expand Down

0 comments on commit eb8e646

Please sign in to comment.