kopia lustrzana https://github.com/miklobit/TiddlyWiki5
18 wiersze
210 B
Bash
18 wiersze
210 B
Bash
|
#!/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
|