update build actionx8 #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build on Push to Main | |
on: | |
push: | |
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 | |
- name: Build the solution | |
run: msbuild TextToSpeech/TextToSpeech.csproj /p:Configuration=Release |