Browse Source

Add .gitlab-ci.yml.

Douwe Maan 9 years ago
parent
commit
a7bf720a3b
1 changed files with 11 additions and 0 deletions
  1. 11 0
      .gitlab-ci.yml

+ 11 - 0
.gitlab-ci.yml

@@ -0,0 +1,11 @@
+pages:
+  stage: deploy
+  script:
+  - mkdir .public
+  - cp -r * .public
+  - mv .public public
+  artifacts:
+    paths:
+    - public
+  only:
+  - master