This commit is contained in:
2024-05-11 16:54:22 -05:00
parent e0e6ffedbb
commit c05fcc8dc4
104 changed files with 30701 additions and 9327 deletions

15
BuildAndPublish.sh Normal file
View File

@@ -0,0 +1,15 @@
# Build the book
mkdocs build
#Copy assets into place
rsync -a site/* ../../publish-STLShopGuide
# 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 ..