diff options
author | Henrique Alves <henriquelalves@gmail.com> | 2022-07-15 15:02:55 -0300 |
---|---|---|
committer | Henrique Alves <henriquelalves@gmail.com> | 2022-07-15 15:02:55 -0300 |
commit | f8330e5b1430a65bd6f8f791209d4f87a4701bd9 (patch) | |
tree | 5af9401ae5e2d9d9d256797f656c8b67194aec02 /makefile | |
parent | f3e071b51946f5278d2115dd536c15ee5b7aa123 (diff) | |
download | gamejam-gmtk-2022-f8330e5b1430a65bd6f8f791209d4f87a4701bd9.tar.gz gamejam-gmtk-2022-f8330e5b1430a65bd6f8f791209d4f87a4701bd9.tar.bz2 gamejam-gmtk-2022-f8330e5b1430a65bd6f8f791209d4f87a4701bd9.zip |
add makefile
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..d772d51 --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +.PHONY: deploy +deploy: + mkdir -p ./build/ + ~/bin/Godot_v3.4.4-stable_linux_headless.64 --export "HTML5" ./build/build.html + mv ./build/build.html ./build/index.html + zip -r -j build.zip ./build/* + ~/bin/butler push ./build.zip perons/devour:html5 + rm -rf ./build/ + rm ./build.zip |