Index

joshstock.in / 0e80ce6

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
4404 Jan 2020 12:27b0911fdUpdate permission for git hooksJosh Stockin100N

Blob @ joshstock.in / post-receive

text/x-shellscript811 bytesdownload raw
1#!/bin/bash
2
3# this file is automatically updated, although the pre-receive hook must be placed manually:
4# 'pre-receive' -> '.git/hooks/pre-receive'
5
6TARGET="/home/ubuntu/joshstock.in/deploy"
7GIT_DIR="/home/ubuntu/joshstock.in/project.git"
8BRANCH="master"
9HTML_OUT="/var/www/html"
10
11while read oldrev newrev ref
12do
13 if [ "$ref" = "refs/heads/$BRANCH" ];
14 then
15 echo "Ref $ref received. Deploying ${BRANCH} branch to production..."
16 git --work-tree=$TARGET --git-dir=$GIT_DIR checkout -f $BRANCH
17 echo "Compiling root HTML"
18 sudo $TARGET/compile.py $HTML_OUT
19 echo "Copying nginx configuration"
20 sudo $TARGET/copynginx prod
21 echo "Installing git pager"
22 sudo $TARGET/installgitpager prod
23 else
24 echo "Ref $ref received. Doing nothing: only the ${BRANCH} branch may be deployed on this server."
25 fi
26done
27