From 1f3ea1cd0594c5c3cf05c155eee8a98b83b5d26e Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 13 May 2020 20:40:24 -0700 Subject: [PATCH] Fix .gitlab-ci.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ‘stage’ doesn’t exist as a top-level key. - It looks like the ‘paths’ in ‘artifacts’ can’t start with a glob. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f90e0a4..1850817 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ image: silex/emacs:26.3-alpine-dev -stage: +stages: - pre-package - package - deploy @@ -13,7 +13,7 @@ pre-package: - make artifacts: paths: - - *.tar + - /*.tar package: stage: package