From d9666f99bb2be49414fe70f5d74c34c7e83f503e Mon Sep 17 00:00:00 2001 From: Adrian Short Date: Thu, 4 Oct 2018 21:50:24 +0100 Subject: [PATCH] Add deploy script --- bin/deploy | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 bin/deploy diff --git a/bin/deploy b/bin/deploy new file mode 100755 index 0000000..2e6aaed --- /dev/null +++ b/bin/deploy @@ -0,0 +1,8 @@ +#!/usr/bin/env sh + +bundle exec bin/download +bundle exec bin/petrify +cd _site +git commit -am "Update content" +git push origin master +cd -