From bb4612ca83300c3167867ba7c5efd69a0c5d5bd1 Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Sat, 27 Apr 2019 14:57:54 +0200 Subject: [PATCH] Add Makefile to deploy game --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..641c1b6 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +GAME:=right_coin.lua + +html: + tic80 $(GAME) + +deploy-html: #html + butler push build/html damantisshrimp/the-right-coin:html + +deploy: deploy-html