Skip to content

Commit ed70ca3

Browse files
committed
fix: fixed ci/cd actions for debug builds
1 parent 8a36946 commit ed70ca3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
$shortSha = "${{ github.sha }}".Substring(0,12)
1414
$run = "${{ github.run_number }}"
1515
Add-Content $env:GITHUB_ENV "SHORT_SHA=$shortSha"
16-
Rename-Item build\Debug\vmaware.exe "vmaware_${run}_${shortSha}.exe"
16+
Rename-Item build\Release\vmaware.exe "vmaware_${run}_${shortSha}.exe"
1717
- "uses": "actions/upload-artifact@main"
1818
"with":
19-
"path": build\Debug\vmaware_${{ github.run_number }}_${{ env.SHORT_SHA }}.exe
19+
"path": build\Release\vmaware_${{ github.run_number }}_${{ env.SHORT_SHA }}.exe
2020
"name": "vmaware64_debug.exe"
2121
"build_run_win_32_debug":
2222
"runs-on": "windows-latest"
@@ -29,10 +29,10 @@
2929
$shortSha = "${{ github.sha }}".Substring(0,12)
3030
$run = "${{ github.run_number }}"
3131
Add-Content $env:GITHUB_ENV "SHORT_SHA=$shortSha"
32-
Rename-Item build\Debug\vmaware.exe "vmaware_${run}_${shortSha}.exe"
32+
Rename-Item build\Release\vmaware.exe "vmaware_${run}_${shortSha}.exe"
3333
- "uses": "actions/upload-artifact@main"
3434
"with":
35-
"path": build\Debug\vmaware_${{ github.run_number }}_${{ env.SHORT_SHA }}.exe
35+
"path": build\Release\vmaware_${{ github.run_number }}_${{ env.SHORT_SHA }}.exe
3636
"name": "vmaware32_debug.exe"
3737
"build_run_win_32_release":
3838
"runs-on": "windows-latest"

0 commit comments

Comments
 (0)