From a16dc82cef5b582118a8a83bbc0a9dfcf0908c70 Mon Sep 17 00:00:00 2001 From: icex2 Date: Tue, 28 Dec 2021 23:41:04 +0100 Subject: [PATCH] Bugfix gitlab-ci Artifacts need to be yielded from build stage in order to have these available in the following stages --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9706275..92e6468 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,6 +41,10 @@ build: - apk update && apk add make > /dev/null script: - make build-docker + artifacts: + paths: + - build + expire_in: 1 week upload-package-registry: stage: upload