Skip to content

Commit

Permalink
use powershell again
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed Nov 20, 2024
1 parent f483169 commit e907c87
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,13 @@ jobs:
dir
- name: Move All Files to Folder
shell: powershell
run: |
mkdir artifact_folder
for %f in (*) do if not "%f"=="artifact_folder" move "%f" artifact_folder
New-Item -ItemType Directory -Force -Path artifact_folder
Get-ChildItem -Path . -Exclude artifact_folder | ForEach-Object {
Move-Item -Path $_.FullName -Destination artifact_folder
}
- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit e907c87

Please sign in to comment.