diff options
author | Case Duckworth | 2018-01-30 18:12:56 +0000 |
---|---|---|
committer | Case Duckworth | 2018-01-30 18:12:56 +0000 |
commit | 4de37d983e08a06d6e978c1fcf23fe9a16e7a31d (patch) | |
tree | 87f1b0362c52f0c30e2e0de894e94db2908ab4d5 | |
parent | Create CNAME (diff) | |
download | autocento-4de37d983e08a06d6e978c1fcf23fe9a16e7a31d.tar.gz autocento-4de37d983e08a06d6e978c1fcf23fe9a16e7a31d.zip |
Add .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 | ||