Files
elwig/.gitea/workflows/test.yaml
Lorenz Stechauner fc0b3e3337
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Has started running
Test MS build / Build (Release, x64) (push) Successful in 2m30s
workflows/test: Update Restore
2023-11-20 20:45:41 +01:00

25 lines
777 B
YAML

name: Test MS build
run-name: Test MS build
on: [push]
jobs:
Build:
runs-on: windows
strategy:
matrix:
configuration: [Release]
platform: [x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1
- name: Setup NuGet
uses: nuget/setup-nuget@v1
- name: Restore NuGet packages
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