From a2b4b0a16f88956636ced81fe6232e826f52bcb6 Mon Sep 17 00:00:00 2001
From: Adam Caprez <acaprez2@unl.edu>
Date: Thu, 20 Dec 2018 21:05:31 +0000
Subject: [PATCH] Ignore cache when building.

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 31521c12..fcc00ea4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,7 +18,7 @@ test:
   before_script:
     - curl -L -o - ${HUGO_TARBALL} | tar -zxv -C /usr/local/bin
   script:
-    - hugo -v
+    - hugo --ignoreCache -v
 
 deploy:
   stage: deploy
@@ -30,6 +30,6 @@ deploy:
   tags:
     - docs-test
   script:
-    - hugo -b ${BASE_URL} -v
+    - hugo --ignoreCache -b ${BASE_URL} -v
     - pandoc -s content/facilities.md -o public/facilities.docx
     - rsync -avz --delete public/ $DEPLOY_ROOT
-- 
GitLab