Skip to content

update build action #24

update build action

update build action #24

Workflow file for this run

name: Build Check
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up MSBuild
uses: microsoft/[email protected]
- name: Restore NuGet packages
run: nuget restore TextToSpeech.sln
# Step 1: Build the WinForms project
- name: Build WinForms Project
run: msbuild TextToSpeech/TextToSpeech.csproj /p:Configuration=Release
# Step 2: Build the Wix Installer project
- name: Build Wix Installer Project
run: msbuild TextToSpeechInstaller/TextToSpeechInstaller.wixproj /p:Configuration=Release