Add an option to "Recompress ARM9 binary", improve arm9 blz #113
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 TinkeDSi nightly | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
Solution_Name: Tinke.sln | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
# Build | |
- name: Build | |
run: | | |
./compile.bat Release x64 | |
- uses: actions/upload-artifact@master | |
with: | |
name: TinkeDSi-nightly | |
path: build |