From 49e11632d4c032b35f05d2100ce596b96e406a90 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Sat, 9 Feb 2019 10:25:31 -0600 Subject: [PATCH] Relying on the built in run.sh script --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 85f046e..47addeb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,11 @@ stages: build-website: image: sothr.com/hugo:0.54.0 stage: build + variables: + HUGO_THEME: "pure" + HUGO_BASEURL: "https://sothr.com" script: - - /usr/local/sbin/hugo --theme pure --destination /output --baseURL https://sothr.com - - TARGET=$PWD + - /run.sh - tar -czvf website.tgz -C /output/ . only: - master