Files
elwig/.gitea/workflows/test.yaml
Lorenz Stechauner aaf3d13f09
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Test MS build / Build (Release, x64) (push) Successful in 21s
workflows/test: update
2023-11-20 18:45:28 +01:00

22 lines
649 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: Build Installer
shell: powershell -Command {0} 2>&1
run: Start-Process -NoNewWindow -Wait -FilePath msbuid -ArgumentList "Installer/Installer.wixproj -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.platform }}"