mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-25 11:30:55 -08:00
18 lines
276 B
Bash
Executable file
18 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Deploy latest build to github
|
|
|
|
# This deployment script needs several improvements:
|
|
|
|
# 1) deploying to NPM
|
|
# 2) deploying to TiddlySpace
|
|
|
|
pushd ../jermolene.github.com
|
|
|
|
git add --all || exit 1
|
|
|
|
git commit -m "Updates" || exit 1
|
|
|
|
git push origin || exit 1
|
|
|
|
popd
|