12 lines
237 B
Makefile
12 lines
237 B
Makefile
all: clean build # TODO: add stage here one we can actually build something
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
build:
|
|
posty build
|
|
|
|
stage:
|
|
gsutil -m rsync -d -r build/ gs://test.nickpegg.com
|
|
|
|
# TODO: add a `publish` task when ready to roll to prod
|