diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ad23689 --- /dev/null +++ b/.gitlab-ci.yml | |||
@@ -0,0 +1,13 @@ | |||
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 | - gl-page | ||