summaryrefslogtreecommitdiff
path: root/makefile
blob: 5eb2d00b7d516ebd753ce58d1dc29a39ba050f99 (plain)
1
2
3
4
5
6
7
8
9
.PHONY: deploy
deploy:
	mkdir -p ./build/
	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
	rm -rf ./build/
	rm ./build.zip