From 0f6da13a7c6eab86924df40fb8e72a7b829cd0ce Mon Sep 17 00:00:00 2001
From: Marco Marinello <me@marcomarinello.it>
Date: Tue, 8 Jun 2021 15:41:52 +0200
Subject: [PATCH] Serve production build as artifact

Signed-off-by: Marco Marinello <me@marcomarinello.it>
---
 .gitlab-ci.yml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 613cb4e..f63fa44 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,7 +11,12 @@ build:
     - yarn install
     - yarn test
     - yarn build || echo "Unable to build!"
-    
+    - tar cvf build.tar build
+  artifacts:
+    paths:
+      - build
+      - build.tar
+
 pages:
   stage: docs
   script:
-- 
GitLab