summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Berg <benjamin@sipsolutions.net>2022-11-03 13:52:36 +0100
committerBenjamin Berg <benjamin@sipsolutions.net>2022-11-03 13:52:36 +0100
commit38a52894a36ed2ca30fd40c6500ae7433f5ba818 (patch)
treedda297c0db220d9d2ecdb33a10145b974de88b32
parentdcb4600b3302d0f9e225a0db4c836f0a9725195a (diff)
ci: Fix paths included in build artifacts
Seems like using $(pwd) got broken with newer gitlab versions. Just use the CI_PROJECT_DIR (though we could also just use '.' even).
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index af9337a..e56b466 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -68,7 +68,8 @@ build:
# avoid recompiling in test stage
artifacts:
name: untracked
- paths: [$(pwd)]
+ paths:
+ - "${CI_PROJECT_DIR}"
expire_in: 3h30min