From 0f21a8f156906438279d5d1b33e16477b1445c24 Mon Sep 17 00:00:00 2001 From: Tom David Mueller Date: Wed, 20 Nov 2024 15:22:06 +0100 Subject: [PATCH] use powershell --- .github/workflows/debug.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debug.yaml b/.github/workflows/debug.yaml index cd9e02b..cb00bea 100644 --- a/.github/workflows/debug.yaml +++ b/.github/workflows/debug.yaml @@ -51,9 +51,10 @@ jobs: dir - name: Move All Files to Folder + shell: powershell run: | - mkdir artifact_folder - move * artifact_folder + New-Item -ItemType Directory -Force -Path artifact_folder + Get-ChildItem -File | ForEach-Object { Move-Item $_.FullName artifact_folder } - name: Upload Artifact uses: actions/upload-artifact@v3