deploy android builds
This commit is contained in:
parent
d731de2195
commit
95c7976f14
6
justfile
6
justfile
|
@ -3,13 +3,17 @@
|
|||
src_dir := "$PWD"
|
||||
build_dir := "$PWD/build"
|
||||
itchio := "damantisshrimp/taqin"
|
||||
apk := build_dir + "/android/Taqin.apk"
|
||||
|
||||
edit:
|
||||
godot --editor --quiet &
|
||||
|
||||
export-android:
|
||||
mkdir -p {{build_dir}}/android
|
||||
godot --export "Android" {{build_dir}}/android
|
||||
godot --quit --export "Android" {{apk}}
|
||||
|
||||
deploy-android: export-android
|
||||
butler push {{apk}} {{itchio}}:android
|
||||
|
||||
export-html:
|
||||
mkdir -p {{build_dir}}/html
|
||||
|
|
Loading…
Reference in a new issue