An error occurred while loading the file. Please try again.
This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 148 bytes
pages:
  stage: deploy
  script:
  - mkdir .public
  - cp -r * .public
  - mv .public public
  artifacts:
    paths:
    - public
  only:
  - master