From ffa98518e6a309cd19225d55fec7e97262bd8c2d Mon Sep 17 00:00:00 2001 From: Adrian Short Date: Fri, 5 Oct 2018 23:35:16 +0100 Subject: [PATCH] Add deploy script --- bin/deploy | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/deploy diff --git a/bin/deploy b/bin/deploy new file mode 100755 index 0000000..4a74d18 --- /dev/null +++ b/bin/deploy @@ -0,0 +1,7 @@ +#!/usr/bin/env sh + +bundle exec bin/build +cd _site +git commit -am "Update content" +git push origin master +cd -