mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
6e9cd59437
Fixes #807
18 lines
210 B
Bash
Executable File
18 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Publish to NPM
|
|
|
|
npm publish || exit 1
|
|
|
|
# Deploy latest build to github
|
|
|
|
pushd ../jermolene.github.com
|
|
|
|
git add --all || exit 1
|
|
|
|
git commit -m "Updates" || exit 1
|
|
|
|
git push origin || exit 1
|
|
|
|
popd
|