This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/publish.sh

25 lines
603 B
Bash
Raw Normal View History

2017-07-10 22:12:20 +00:00
#!/usr/bin/env bash
2017-07-24 17:15:56 +00:00
set -uex
2017-07-10 22:12:20 +00:00
2017-07-24 17:15:56 +00:00
SITE_ENV="prod"
2017-07-24 16:16:20 +00:00
REPO=`git config remote.origin.url`
SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:}
SHA=`git rev-parse --verify HEAD`
2017-07-24 18:23:40 +00:00
TARGET_BRANCH="master"
2017-07-24 16:16:20 +00:00
2017-07-14 22:16:24 +00:00
# Build front-end assets.
2017-07-20 17:58:25 +00:00
npm run prod
2017-07-14 22:16:24 +00:00
2017-07-10 22:12:20 +00:00
# Remove the existing docs directory, build the site and create the new
# docs directory.
rm -rf ./docs
vendor/bin/sculpin generate --no-interaction --clean --env=${SITE_ENV}
touch output_${SITE_ENV}/.nojekyll
mv output_${SITE_ENV} docs
# Add, commit and push the changes.
git add --all docs
git commit -m "Re-generate site. $SHA"
2017-07-24 18:23:40 +00:00
git push $SSH_REPO $TARGET_BRANCH