Files
elwig/.gitea/workflows/test.yaml
Lorenz Stechauner c2bd87f1a7
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Test MS build / Build (Release, x64) (push) Has started running
workflows/test: Update
2023-11-20 19:51:30 +01:00

22 lines
580 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: "&{ msbuild Installer/Installer.wixproj -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} }"