From e43b087497124f16e4c195cbdfd111d0b81dee3b Mon Sep 17 00:00:00 2001 From: Yannick Francois Date: Mon, 21 May 2018 22:45:31 +0200 Subject: [PATCH] Ajout du script de deploy --- deploy | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 deploy diff --git a/deploy b/deploy new file mode 100644 index 0000000..ac09433 --- /dev/null +++ b/deploy @@ -0,0 +1,4 @@ +#!/bin/sh + +hugo +cd public && git add --all && git commit -m "Publishing to gh-pages" && git push -f && cd ..