diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c57585781b169e01347153e4698d72e41f1b77e4..85fce0f807cd83f0db15510dcbdc264587fd5367 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,17 @@ # The Docker image that will be used to build your app image: harbor.pagoda.os.univ-lyon1.fr/ecoquery-hugo/hugo:latest + +pages: + stage: deploy + script: + - pwd + - cd web + - hugo + - mv public ../public + - ls .. + - ls ../public + artifacts: + paths: + - public + only: + - master