Documentation/deploy.sh

14 lines
561 B
Bash
Raw Normal View History

2020-08-24 19:27:11 +00:00
#!/bin/bash -ex
npm run build
DEPLOYMENT_REPO=${1:-git@codeberg.org:Codeberg-Infrastructure/static-deployments}
DEPLOYMENT_BRANCH=${2:-docs}
2020-08-24 19:27:11 +00:00
rm -rf pages.git
mkdir pages.git
( cd pages.git && git init -b "$DEPLOYMENT_BRANCH" )
2020-08-24 19:27:11 +00:00
rsync -av _site/* pages.git/
( cd pages.git && git add -A ) ## add all generated files
( cd pages.git && git commit -m "Deployment at $(date -u -Is)" ) ## commit all
( cd pages.git && git remote add origin "$DEPLOYMENT_REPO" )
( cd pages.git && git push -f origin "$DEPLOYMENT_BRANCH" ) ## force-push and rewrite (empty) history