Commit cdd8e42a authored by Pages's avatar Pages
Browse files

Add .gitlab-ci.yml

parent 1688bed8
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+13 −0
Original line number Diff line number Diff line
# 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