mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-24 11:00:44 -08:00
Which means that I'll only be deploying when there's a version bump. Which means that I'll be deploying new versions multiple times a day sometimes.
17 lines
210 B
Bash
Executable file
17 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
|