Skip to content
Snippets Groups Projects

Add .gitlab-ci.yml

Closed Loïc Mura requested to merge test-pages into master
1 file
+ 13
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 13
0
# 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:
- test-pages
Loading