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