From fc2555568035dc6bc33002fdaf9d29c1c97c6478 Mon Sep 17 00:00:00 2001 From: Ivan Fonarev Date: Fri, 27 Oct 2023 20:27:36 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f26ca55..a8b5706 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,11 +12,11 @@ run-build: stage: build script: - pwd - - mkdir /builds/artifact + - mkdir -p ./builds/artifact - apt update - apt install -y build-essential devscripts dh-make - dpkg-buildpackage -us -uc - - mv ../* /builds/artifact + - mv ../* ./builds/artifact # This stage is only executed for new tags only: @@ -25,4 +25,4 @@ run-build: # The files which are to be made available in GitLab artifacts: paths: - - /builds/artifact + - ./builds/artifact