This repository has been archived on 2026-03-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
blog/Makefile
2025-07-06 09:27:24 +02:00

14 lines
No EOL
255 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
TIMESTAMP=$(date +'%F %r'); git commit -m "Page Update $TIMESTAMP"
git push