|
2 days ago | |
---|---|---|
.vscode | 1 year ago | |
archive | 1 month ago | |
docs | 2 days ago | |
theme | 1 month ago | |
.gitignore | 3 years ago | |
README.md | 1 year ago | |
mkdocs.yml | 3 weeks ago |
Fatto con mkdocs.
Puoi cambiare i testi dei markdown anche qui, poi qualcuno fara' il deploy.
niente CI, niente webhook, devi mettere questo qui sotto in .git/hooks/pre-push
e renderlo +x
#!/bin/sh
remoteUser="root"
remoteServer="castro.cose.belle"
remotePath="/var/www/hackrocchio"
localPath="./site/"
buildCmd="mkdocs build"
current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
if [ $current_branch = "master" ]; then
$buildCmd
echo Updating files...
rsync -rzhe ssh --delete --filter=':- .gitignore' ./site/ $remoteUser@$remoteServer:$remotePath
fi
# and you're done!
exit 0