From 2d8ee2b86d45b44a28bf71770ebebd83a8edc10a Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 15 Apr 2021 13:06:49 +1000 Subject: [PATCH] ci: fix the pages job Regression introduced in 7e741ef98387024ab7094b7d168df02d272720bd, the change of BUILD_ID in that commit caused the pages job to break. Fix it by relying on the same path expansion we use for the artifacts in the parent job instead of a hardcoded path. --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c913771fa..20a7c3b8c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -190,9 +190,8 @@ pages: dependencies: - build_on_fedora script: - - export PREFIX="$PWD/prefix-build_on_fedora" - mkdir public - - cp -R $PREFIX/share/doc/pipewire/html/* public/ + - cp -R prefix-*/share/doc/pipewire/html/* public/ artifacts: paths: - public