Files
elwig/.gitea/workflows/test.yaml
Lorenz Stechauner fd3bb88cb1
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 Build Installer
2023-11-20 14:22:56 +01:00

21 lines
549 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
run: msbuild 'Installer/Installer.wixproj' /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }}