diff options
author | Henrique Alves <henriquelalves@gmail.com> | 2024-01-24 23:39:06 +0200 |
---|---|---|
committer | Henrique Alves <henriquelalves@gmail.com> | 2024-01-24 23:39:06 +0200 |
commit | a4ed38306d49a4654570d48d6a7fe5c810ec5da8 (patch) | |
tree | 6e5f24ac658b6bcfa099281ab882ec3abbfa79aa /deploy.sh | |
parent | 200fa004ecdf08a54a81770c84e9970e9f2271b9 (diff) | |
download | gamejam-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-x | deploy.sh | 12 |
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 |