We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5553b22 commit 1352090Copy full SHA for 1352090
.github/workflows/build.yml
@@ -297,7 +297,14 @@ jobs:
297
298
timeout-minutes: 90
299
300
- steps:
+ steps:
301
+ - name: Pre Clean Up for self-hosted runner
302
+ if: runner.os == 'Windows' && matrix.config.working-directory
303
+ shell: cmd
304
+ run: |
305
+ if exist "${{ matrix.config.working-directory }}" rmdir /s /q "${{ matrix.config.working-directory }}"
306
+ if exist "C:\actions-runner\_work\arduino-ide\arduino-ide" rmdir /s /q "C:\actions-runner\_work\arduino-ide\arduino-ide"
307
+
308
- name: Symlink custom working directory
309
shell: cmd
310
if: runner.os == 'Windows' && matrix.config.working-directory
0 commit comments