From 0baa80563d092aeb0b5ac29dfcb00bd110e55c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Wed, 22 May 2019 00:14:41 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e73297..47912bf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,4 +13,8 @@ after_script: build: stage: build script: - - find . -maxdepth 1 -type d | xargs zip + - mkdir out + - find . -maxdepth 1 -type d -not -name ".git" -not -name "out" | xargs -I {} zip out/{} {} + artifacts: + paths: + - ./out \ No newline at end of file