mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2025-01-03 18:30:15 +02:00
correctly write if statements
This commit is contained in:
parent
9303d2d14d
commit
84cc74ffbe
12
.github/workflows/windows.yml
vendored
12
.github/workflows/windows.yml
vendored
@ -69,8 +69,8 @@ jobs:
|
|||||||
- name: Setup MSBuild
|
- name: Setup MSBuild
|
||||||
uses: microsoft/setup-msbuild@v1
|
uses: microsoft/setup-msbuild@v1
|
||||||
|
|
||||||
- if: ${{ matrix.arch }} == "Win32"
|
- name: Download UMSKT-DJGPP compiled artifact
|
||||||
name: Download UMSKT-DJGPP compiled artifact
|
if: ${{ matrix.arch == "Win32" }}
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: UMSKT-DOS
|
name: UMSKT-DOS
|
||||||
@ -97,15 +97,15 @@ jobs:
|
|||||||
name: UMSKT-${{ matrix.arch }}
|
name: UMSKT-${{ matrix.arch }}
|
||||||
path: build/actions_upload
|
path: build/actions_upload
|
||||||
|
|
||||||
- if: ${{ matrix.arch }} == "Win32"
|
- name: Move Win32+DOS executable to upload directory
|
||||||
name: Move Win32+DOS executable to upload directory
|
if: ${{ matrix.arch == "Win32" }}
|
||||||
run: |
|
run: |
|
||||||
Remove-Item "build/actions_upload" -Force -Recurse
|
Remove-Item "build/actions_upload" -Force -Recurse
|
||||||
mkdir build/actions_upload
|
mkdir build/actions_upload
|
||||||
Move-Item build/Release/umskt_win32_dos.exe build/actions_upload/umskt.exe
|
Move-Item build/Release/umskt_win32_dos.exe build/actions_upload/umskt.exe
|
||||||
|
|
||||||
- if: ${{ matrix.arch }} == "Win32"
|
- name: Upload build artifact
|
||||||
name: Upload build artifact
|
if: ${{ matrix.arch == "Win32" }}
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.2
|
||||||
with:
|
with:
|
||||||
name: UMSKT-Win32+DOS
|
name: UMSKT-Win32+DOS
|
||||||
|
Loading…
Reference in New Issue
Block a user