Skip to content

pakconverter: disable cursor position when not supported #2

pakconverter: disable cursor position when not supported

pakconverter: disable cursor position when not supported #2

Workflow file for this run

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/[email protected]
with:
name: burntime
path: burntime.zip