pakconverter: disable cursor position when not supported #2
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: test | |
on: | |
push: | |
branches: [ devel/pak-converter ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: (cd source && dotnet publish Burntime.MonoGame -c Release /p:DebugSymbols=false /p:PublishReadyToRun=false /p:TieredCompilation=false --self-contained /p:PublishSingleFile=true && cd ..) | |
- name: Build Tools | |
run: | | |
cd source | |
dotnet build PakConverter -c Release /p:DebugSymbols=false | |
cd .. | |
- name: Create Paks | |
run: | | |
cd ./bin/Release/win-x64/publish/game | |
../../../../tools/Release/PakConverter.exe classic | |
../../../../tools/Release/PakConverter.exe classic_newgfx | |
cd ../../../../.. | |
- name: Remove Folders | |
run: | | |
rm -r ./bin/Release/win-x64/publish/game/classic | |
rm -r ./bin/Release/win-x64/publish/game/classic_newgfx | |
rm -r ./bin/Release/win-x64/publish/game/classic_es | |
rm -r ./bin/Release/win-x64/publish/game/classic_jp | |
- name: Package | |
run: | | |
rm ./bin/Release/win-x64/publish/*.pdb | |
tar -caf burntime.zip -C ./bin/Release/win-x64/publish * | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v2.2.4 | |
with: | |
name: burntime | |
path: burntime.zip |