Created
December 5, 2019 16:07
-
-
Save akillcool/5387ed855c7cfe9c1b1878441d6c4962 to your computer and use it in GitHub Desktop.
deploy github pages generated by Hugo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# If a command fails then the deploy stops | |
set -e | |
printf "\033[0;32mDeploying updates to GitHub...\033[0m\n" | |
# Build the project. | |
hugo -t even # if using a theme, replace with `hugo -t <YOURTHEME>` | |
# Go To Public folder | |
cd public | |
# Add changes to git. | |
git add . | |
# Commit changes. | |
msg="rebuilding site $(date)" | |
if [ -n "$*" ]; then | |
msg="$*" | |
fi | |
git commit -m "$msg" | |
# Push source and build repos. | |
git push origin master | |
cd .. | |
git add . | |
git commit -m "$msg" | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment