13 lines
268 B
Makefile
13 lines
268 B
Makefile
all: write push publish
|
|
|
|
write:
|
|
./noter/writer.sh public
|
|
|
|
push:
|
|
git add -A
|
|
git commit -m "Updating site via make at $$(date --iso=seconds)"
|
|
git push
|
|
|
|
publish:
|
|
ssh siina.monster "cd /var/www/siina.monster && git pull && git submodule update --recursive --remote"
|