Files
elwig/.gitea/workflows/test.yaml
Lorenz Stechauner 80b7887df7
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Test MS build / Build (Release, x64) (push) Failing after 13m10s
workflows/test: update
2023-11-20 18:54:51 +01:00

22 lines
632 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
run: Start-Process -NoNewWindow -Wait -FilePath msbuild -ArgumentList "Installer/Installer.wixproj -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.platform }}"