Update build.yml #5
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 App | |
on: | |
push: | |
branches: | |
- 'master' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install .NET Framework Developer Packs | |
run: choco install netfx-4.5.2-devpack | |
- name: Install dependencies | |
run: dotnet restore LunaticPlayer.sln | |
- name: Build | |
run: dotnet build LunaticPlayer.sln |