summaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
authorHenrique Alves <henriquelalves@gmail.com>2024-01-24 23:39:06 +0200
committerHenrique Alves <henriquelalves@gmail.com>2024-01-24 23:39:06 +0200
commita4ed38306d49a4654570d48d6a7fe5c810ec5da8 (patch)
tree6e5f24ac658b6bcfa099281ab882ec3abbfa79aa /deploy.sh
parent200fa004ecdf08a54a81770c84e9970e9f2271b9 (diff)
downloadgamejam-ggj-2024-a4ed38306d49a4654570d48d6a7fe5c810ec5da8.tar.gz
gamejam-ggj-2024-a4ed38306d49a4654570d48d6a7fe5c810ec5da8.tar.bz2
gamejam-ggj-2024-a4ed38306d49a4654570d48d6a7fe5c810ec5da8.zip
first deploy
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/deploy.sh b/deploy.sh
new file mode 100755
index 0000000..916655a
--- /dev/null
+++ b/deploy.sh
@@ -0,0 +1,12 @@
+#! /bin/bash
+
+readonly GODOT_4_PATH="/home/peronio/.local/bin/Godot_v4.2.1.x86_64"
+readonly PROJECT_NAME="ggj-2024"
+
+mkdir -p ./build/
+${GODOT_4_PATH} --headless --export-release "Web" ./build/build.html
+mv ./build/build.html ./build/index.html
+zip -r -j build.zip ./build/*
+butler push ./build.zip illusion-fisherman/${PROJECT_NAME}:html5
+rm -rf ./build/
+rm ./build.zip