From 63bf14adddaf4e08c6c1d4f01799adc0b924f6ce Mon Sep 17 00:00:00 2001
From: thoth <thoth@mailoo.org>
Date: Sat, 23 Nov 2019 00:17:22 +0100
Subject: [PATCH] feat: add gitlab ci

---
 .gitlab-ci.yml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..3b77403
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,23 @@
+image: pandoc/core:latest
+
+build:
+  stage: build
+  script:
+    - make
+  artifacts:
+    paths:
+      - public
+    expire_in: 2 week
+
+pages:
+  stage: deploy
+  script:
+    - mv public/slide.html public/index.html
+  artifacts:
+    paths:
+      - public
+  only:
+    - master
+
+
+
-- 
GitLab