added cactus theme files

This commit is contained in:
2022-07-31 17:32:45 -07:00
parent 1c054014c6
commit b32268d438
142 changed files with 17322 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#!/bin/sh
# if [ "`git status -s`" ]
# then
# echo "The working directory is dirty. Please commit any pending changes."
# exit 1;
# fi
echo "Deleting old publication"
rm -rf public
echo "Generating site"
hugo
echo "Updating master branch"
cd public
git init
git config --global push.default matching
git config --global user.email "${GitHubEMail}"
git config --global user.name "${GitHubUser}"
git add --all .
git commit -m "Publishing to master (deploy.sh)"
echo "Pushing to github"
git push --quiet --force https://${GitHubKEY}@github.com/${GitHubUser}/${GitHubRepo}.git master