Skip to content
Snippets Groups Projects
.gitlab-ci.yml 562 B
Newer Older
Alexandre MEYER's avatar
Alexandre MEYER committed
# The Docker image that will be used to build your app
image: harbor.pagoda.os.univ-lyon1.fr/ecoquery-hugo/hugo:latest
test:
  script:
      - pwd
      - cd web
      - hugo
      - mv public ../public
      - ls -la ..
      - ls -la ../public
      - chmod 755 ../public
      - chmod 644 ../public/index.html
  except:
    - master

# pages:
#   stage: deploy
#   script:
#       - pwd
#       - cd web
#       - hugo
#       - mv public ../public
#       - ls ..
#       - ls ../public
#   artifacts:
#     paths:
#       - public
#   only:
#     - master