build pipeline

This commit is contained in:
2024-05-11 16:45:36 -05:00
parent 2996bb6356
commit 210ad27028
2 changed files with 36 additions and 21 deletions

15
BuildAndPublish.sh Normal file
View File

@@ -0,0 +1,15 @@
# 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 ..