workflows/test: Update Restore
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Has started running
Test MS build / Build (Release, x64) (push) Successful in 2m30s

This commit is contained in:
2023-11-20 20:45:41 +01:00
parent b61e8dbcb0
commit fc0b3e3337

View File

@ -17,7 +17,8 @@ jobs:
- name: Setup NuGet
uses: nuget/setup-nuget@v1
- name: Restore NuGet packages
run: nuget restore Elwig.sln
shell: powershell
run: $(& nuget restore Elwig.sln; $a=$lastexitcode) | findstr x*; exit $a
- name: Build Installer
shell: powershell
run: $(& msbuild Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a