TSYSGroupHandbook/BuildAndPublish.sh

15 lines
281 B
Bash
Raw Normal View History

2024-05-11 21:45:36 +00:00
# Build the book
mdbook build
#Copy assets into place
rsync -av book/* ../publish-TSGHandbook
# Commit the generated assets
cd ../publish-TSGHandbook
git add -A
git commit -m 'deploy new website version'
# Push the assets to the github page target.
git push page master
cd ..