We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1677d65 commit e7c8cfcCopy full SHA for e7c8cfc
.github/workflows/build.yml
@@ -297,10 +297,16 @@ jobs:
297
timeout-minutes: 90
298
299
steps:
300
- - name: Create
+ - name: Create custom working directory
301
shell: cmd
302
if: runner.os == 'Windows' && matrix.config.working-directory
303
run: if not exist "${{ matrix.config.working-directory }}" mkdir "${{ matrix.config.working-directory }}"
304
+
305
+ - name: Symlink custom working directory
306
+ shell: cmd
307
+ if: runner.os == 'Windows' && matrix.config.working-directory
308
+ run: |
309
+ mklink /d "${{ matrix.config.working-directory }}" "C:\actions-runner\_work\arduino-ide\arduino-ide"
310
311
- name: Checkout
312
if: fromJSON(matrix.config.container) == null
0 commit comments