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).
This commit is contained in:
Benjamin Berg 2022-11-03 13:52:36 +01:00
parent dcb4600b33
commit 38a52894a3

View file

@ -68,7 +68,8 @@ build:
# avoid recompiling in test stage
artifacts:
name: untracked
paths: [$(pwd)]
paths:
- "${CI_PROJECT_DIR}"
expire_in: 3h30min