diff options
author | Rayyan Ansari <rayyan@ansari.sh> | 2022-08-31 17:53:09 +0100 |
---|---|---|
committer | Rayyan Ansari <rayyan@ansari.sh> | 2022-08-31 17:53:09 +0100 |
commit | cac1ec8fbd89583aae8faa872fa0a887474f179a (patch) | |
tree | 638726492422232c7a0efc2b9ed47b9e8aca9f6c /.github/workflows | |
parent | d1dbb1f51ecc50fa7d01ae002b267b6f93cb223f (diff) |
Fix macOS runner cleanup
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-macos-universal.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-macos-universal.yml b/.github/workflows/build-macos-universal.yml index b4ad1a6..8ae536e 100644 --- a/.github/workflows/build-macos-universal.yml +++ b/.github/workflows/build-macos-universal.yml @@ -13,7 +13,8 @@ jobs: runs-on: [self-hosted, macOS, ARM64] steps: - - uses: AutoModality/action-clean@v1 + - name: Clean workspace + run: shopt -s dotglob; rm -rf ${{runner.workspace}}/* - uses: actions/checkout@v3 |