summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorHenrique Alves <henriquelalves@gmail.com>2022-07-17 15:21:20 -0300
committerHenrique Alves <henriquelalves@gmail.com>2022-07-17 15:21:20 -0300
commit7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3 (patch)
treed9b75c8b4e9d6c5b914a2362ac91271e2afd0c05 /makefile
parentf1ec2f4195050d1b7620f8723522ea680828e01e (diff)
downloadgamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.tar.gz
gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.tar.bz2
gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.zip
exporter
Diffstat (limited to 'makefile')
-rw-r--r--makefile16
1 files changed, 15 insertions, 1 deletions
diff --git a/makefile b/makefile
index 5eb2d00..30a7165 100644
--- a/makefile
+++ b/makefile
@@ -4,6 +4,20 @@ deploy:
godot --export "HTML5" ./build/build.html
mv ./build/build.html ./build/index.html
zip -r -j build.zip ./build/*
- butler push ./build.zip perons/gmtk2022:html5
+ butler push ./build.zip perons/dungeonsanddice:html5
+ rm -rf ./build/
+ rm ./build.zip
+
+ mkdir -p ./build/
+ godot --export "WindowsDesktop" ./build/DungeonsAndDice.exe
+ zip -r -j build.zip ./build/*
+ butler push ./build.zip perons/dungeonsanddice:windows
+ rm -rf ./build/
+ rm ./build.zip
+
+ mkdir -p ./build/
+ godot --export "LinuxX11" ./build/DungeonsAndDice
+ zip -r -j build.zip ./build/*
+ butler push ./build.zip perons/dungeonsanddice:linux
rm -rf ./build/
rm ./build.zip