Skip to content
Snippets Groups Projects
.gitlab-ci.yml 666 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



pages:
  script:
Alexandre MEYER's avatar
Alexandre MEYER committed
      - hugo version
Alexandre MEYER's avatar
Alexandre MEYER committed
      - cd web
Alexandre MEYER's avatar
Alexandre MEYER committed
      - ls -la content
Alexandre MEYER's avatar
Alexandre MEYER committed
      - hugo
Alexandre MEYER's avatar
Alexandre MEYER committed
      - ls -la
Alexandre MEYER's avatar
Alexandre MEYER committed
      - mv public ../public
      - ls -la ..
      - ls -la ../public
Alexandre MEYER's avatar
Alexandre MEYER committed
      - cat ../public/index.html
Alexandre MEYER's avatar
Alexandre MEYER committed
  artifacts:
    paths:
      - public
  only:
    - main



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