Update PrKartLevelUp #28
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: .NET Framework 4.8 | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Restore the application | |
run: msbuild Launcher.tw.sln /t:Restore /p:Configuration=Release | |
- name: Build Solution | |
run: msbuild Launcher.tw.sln /p:Configuration=Release /p:Appx_Bundle_Platforms="x64" | |
- name: Archive Artifacts | |
uses: actions/[email protected] | |
with: | |
name: Launcher | |
path: Launcher.exe |