Skip to content
Snippets Groups Projects
Forked from Alexandre MEYER / M1if37-Animation
105 commits behind the upstream repository.
.gitlab-ci.yml 490 B
# 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:
      - cd web
      - hugo
      - mv public ../public
  artifacts:
    paths:
      - public
  only:
    - master


test:
  script:
      - pwd
      - cd web
      - hugo
      - mv public ../public
      - ls -la ..
      - ls -la ../public
      - chmod 755 ../public
      - chmod 644 ../public/index.html
  except:
    - master