From f45ccaabfc98178f91dfd9fddd25eeff3e5b01b6 Mon Sep 17 00:00:00 2001 From: Alexandre MEYER <alexandre.meyer@univ-lyon1.fr> Date: Thu, 17 Nov 2022 16:14:31 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63092ed..9d0150a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,19 @@ # The Docker image that will be used to build your app image: harbor.pagoda.os.univ-lyon1.fr/ecoquery-hugo/hugo:latest + +pages: + script: + - cd web + - hugo + - mv public ../public + artifacts: + paths: + - public + only: + - master + + test: script: - pwd @@ -14,13 +27,3 @@ test: except: - master -pages: - script: - - cd web - - hugo - - mv public ../public - artifacts: - paths: - - public - only: - - master -- GitLab