summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2023-02-07 11:10:44 +0100
committerCarlos Garnacho <carlosg@gnome.org>2023-02-07 11:14:51 +0100
commit39d033207a9fc539f06c4fc61add800d0828dce9 (patch)
tree19c906e95ee4da809de8e758160ea2eea2859dd8
parente30c9cdea5dbc0bf5202142491a13213f3145c92 (diff)
downloadgnome-settings-daemon-39d033207a9fc539f06c4fc61add800d0828dce9.tar.gz
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.
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
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