summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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