File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ jobs:
300
300
- name : Create
301
301
shell : cmd
302
302
if : runner.os == 'Windows' && matrix.config.working-directory
303
- run : mkdir "${{ matrix.config.working-directory }}"
303
+ run : if not exist "${{ matrix.config.working-directory }}" mkdir "${{ matrix.config.working-directory }}"
304
304
305
305
- name : Checkout
306
306
if : fromJSON(matrix.config.container) == null
@@ -431,6 +431,10 @@ jobs:
431
431
with :
432
432
name : ${{ env.JOB_TRANSFER_ARTIFACT }}
433
433
path : ${{ runner.os == 'Windows' && matrix.config.relative-working-directory && format('{0}/{1}', matrix.config.relative-working-directory, env.BUILD_ARTIFACTS_PATH) || env.BUILD_ARTIFACTS_PATH }}
434
+
435
+ - name : Manual Clean up for self-hosted runners
436
+ if : runner.os == 'Windows' && matrix.config.working-directory
437
+ run : rmdir /s /q "${{ matrix.config.working-directory }}"
434
438
435
439
merge-channel-files :
436
440
needs :
You can’t perform that action at this time.
0 commit comments