reachableceo.com/BuildAndPublish.sh

15 lines
284 B
Bash
Raw Permalink Normal View History

2024-05-15 14:49:50 +00:00
# Build the book
hugo
#Copy assets into place
rsync -a public/* ../publish-reachableceo.com
# Commit the generated assets
cd ../publish-reachableceo.com
git add -A
git commit -m 'deploy new website version'
# Push the assets to the github page target.
git push page master
cd ..