blog/Makefile
2025-07-06 09:29:33 +02:00

15 lines
No EOL
268 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
export COMMIT_TITLE="Page Update $(date +%F %r)"
git commit -m "$COMMIT_TITLE"
git push