* change build branch in build.yml * try with get-version * fix get-version * fix get-version again * try use get-version everywhere * use apt upgrade again * fix get-version again * fix get-version again * fix get-version again * fix get-version again * independent get-cc-url * fix get-cc-url * remove 2 useless commands * try action * try fix action * try action * use get-unzip * try windows build * fix build-windows * fix build-love * try build-linux * add shell in build-linux * put `commit id` into `get-version` * fix `updateVersion.py -T Version` * try build-android * add shell into `build-android` * move away android signing from build-android * apply build-android on android mini * gain snapshot action * fixes * fix build-love * use build-macos * put more into build-android * fix build-android * put more into build-macos * fix * fix * ci: use preinstalled ndk (#367) * fix apk location * move `rename` into `build-android` * fix `build-android` * rename variable; remove a level of zips in macOS * shallow clone * remove tons of `./`s * fix icon in windows and linux * reorganize build-android Co-authored-by: 梦飞翔 <1149761294@qq.com>
50 lines
1.7 KiB
YAML
50 lines
1.7 KiB
YAML
name: 'build Windows'
|
|
description: 'build Windows package'
|
|
inputs:
|
|
love-url:
|
|
required: true
|
|
love-dir:
|
|
required: true
|
|
cc-url:
|
|
required: true
|
|
version:
|
|
required: true
|
|
icon:
|
|
required: true
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Download love
|
|
uses: ./.github/actions/get-unzip
|
|
with:
|
|
url: ${{ inputs.love-url }}
|
|
- name: move love
|
|
shell: bash
|
|
run: mv ${{ inputs.love-dir }} love
|
|
- name: Download ColdClear
|
|
uses: ./.github/actions/get-unzip
|
|
with:
|
|
url: ${{ inputs.cc-url }}
|
|
- name: Download ResourceHacker
|
|
uses: ./.github/actions/get-unzip
|
|
with:
|
|
url: http://www.angusj.com/resourcehacker/resource_hacker.zip
|
|
- uses: ./.github/actions/build-love
|
|
- name: Pack Techmino
|
|
shell: pwsh
|
|
run: |
|
|
cmd /c copy /b .\love\love.exe + .\Techmino.love .\love\Techmino.exe
|
|
del .\love\love.exe
|
|
del .\love\lovec.exe
|
|
del .\love\game.ico
|
|
del .\love\love.ico
|
|
del .\love\changes.txt
|
|
del .\love\readme.txt
|
|
move .\cold_clear.dll .\love
|
|
move .\CCloader.dll .\love
|
|
python .\.github\workflows\updateVersion.py -T Windows -N ${{ inputs.version }}
|
|
cmd /c '.\ResourceHacker.exe -open .\love\Techmino.exe -save .\love\Techmino.exe -action delete -mask ICONGROUP,,'
|
|
cmd /c '.\ResourceHacker.exe -open .\Techmino.rc -save .\Techmino.res -action compile'
|
|
cmd /c '.\ResourceHacker.exe -open .\love\Techmino.exe -save .\love\Techmino.exe -action addoverwrite -res "${{ inputs.icon }}" -mask ICONGROUP,1,'
|
|
cmd /c '.\ResourceHacker.exe -open .\love\Techmino.exe -save .\love\Techmino.exe -action addoverwrite -res ".\Techmino.res" -mask VERSIONINFO,1,'
|