mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-25 19:40:45 -08:00
Added equivalent scripts for all .sh files and modified appropriate tiddlers to generate updated readme.md for the GitHub site.
17 lines
211 B
Batchfile
17 lines
211 B
Batchfile
@echo
|
|
|
|
rem Publish to NPM
|
|
|
|
npm publish || exit 1
|
|
|
|
rem Deploy latest build to github
|
|
|
|
pushd ..\mytiddlywiki.github.com
|
|
|
|
git add --all || exit 1
|
|
|
|
git commit -m "Updates" || exit 1
|
|
|
|
git push origin || exit 1
|
|
|
|
popd
|