.gitlab-ci.yml 284 B

1234567891011121314
  1. # This file is a template, and might need editing before it works on your project.
  2. # Full project: https://gitlab.com/pages/plain-html
  3. pages:
  4. stage: deploy
  5. script:
  6. - mkdir .public
  7. - cp -r * .public
  8. - mv .public public
  9. artifacts:
  10. paths:
  11. - public
  12. only:
  13. - master