From 9cded11a9c4d0ff4ba0dcb1fc4ff734ea99ce9b0 Mon Sep 17 00:00:00 2001
From: Marco Marinello <me@marcomarinello.it>
Date: Thu, 6 May 2021 16:23:47 +0200
Subject: [PATCH] Do not fail the whole pipeline if build fails

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 719a2be..613cb4e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ build:
     - npm install --force --global yarn
     - yarn install
     - yarn test
-    - yarn build
+    - yarn build || echo "Unable to build!"
     
 pages:
   stage: docs
-- 
GitLab