Skip to content
Snippets Groups Projects
Select Git revision
  • 53a6ac85d8f0099dc9525a7f233cb348f419e624
  • main default protected
  • revert-9d4bb3d3
3 results

LICENSE

Blame
  • This project is licensed under the MIT License. Learn more
    .gitlab-ci.yml 294 B
    # This file is a template, and might need editing before it works on your project.
    # Full project: https://gitlab.com/pages/plain-html
    pages:
      stage: deploy
      script:
        - mkdir .public
        - cp -r * .public
        - mv .public public
      artifacts:
        paths:
          - public
      only:
        - master