blog/Makefile

14 lines
No EOL
234 B
Makefile

ENGINE=podman
clean:
rm -rf build/
build:
echo "Building webpage"
$(ENGINE) run --rm -v "./:/source" liliesh/franky-blag:latest
publish: clean build
git add .
git status
git commit -m "Page update $$(date '+%F %r')"
git push