From ac99857599c50723f064df84df63f7ed0eae559e Mon Sep 17 00:00:00 2001
From: ManUtopiK <emmanuel.salomon@gmail.com>
Date: Thu, 1 Apr 2021 13:52:07 +0200
Subject: [PATCH] Config gitlab-ci

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

diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml
new file mode 100644
index 00000000..83688b6b
--- /dev/null
+++ b/.gitlab-ci.yaml
@@ -0,0 +1,23 @@
+stages:
+    - publish
+
+.node: &node
+  image: andrewmackrodt/nodejs:14
+  tags:
+    - redshift
+
+pages:
+  <<: *node
+  stage: publish
+  script:
+    - yarn
+    - yarn generate
+    - mv dist public
+  artifacts:
+    untracked: true
+    paths:
+      - public
+  allow_failure: true
+  when: manual
+  only:
+    - master
-- 
GitLab