From 39d033207a9fc539f06c4fc61add800d0828dce9 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Tue, 7 Feb 2023 11:10:44 +0100 Subject: ci: Fix artifact recollection at build stage From https://docs.gitlab.com/ee/ci/yaml/#artifactspaths it doesn't look like gitlab yaml does not expect shell command execution there. CI does indeed complain about this: WARNING: invalid path "": unexpected command substitution at 1:1 Fix this by using a glob pattern. --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ae37234d..86508d87 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,7 +77,8 @@ stages: artifacts: name: untracked when: always - paths: [$(pwd)] + paths: + - ./* expire_in: 3h30min .Show Info: &environment_information -- cgit v1.2.1