mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-13 10:50:27 +00:00
15 lines
225 B
Bash
15 lines
225 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Deploy the output folder to github
|
||
|
|
||
|
# pushd ../jermolene.github.io
|
||
|
|
||
|
# git add --all || exit 1
|
||
|
|
||
|
# git commit -m "Updates" || exit 1
|
||
|
|
||
|
# git push origin || exit 1
|
||
|
|
||
|
# popd
|
||
|
|
||
|
echo "(Placeholdeer feploying to GitHub)"
|