Update .gitlab-ci.yml file

This commit is contained in:
Ivan Fonarev 2023-10-27 20:27:36 +00:00
parent 6eba8ddfce
commit fc25555680

View file

@ -12,11 +12,11 @@ run-build:
stage: build stage: build
script: script:
- pwd - pwd
- mkdir /builds/artifact - mkdir -p ./builds/artifact
- apt update - apt update
- apt install -y build-essential devscripts dh-make - apt install -y build-essential devscripts dh-make
- dpkg-buildpackage -us -uc - dpkg-buildpackage -us -uc
- mv ../* /builds/artifact - mv ../* ./builds/artifact
# This stage is only executed for new tags # This stage is only executed for new tags
only: only:
@ -25,4 +25,4 @@ run-build:
# The files which are to be made available in GitLab # The files which are to be made available in GitLab
artifacts: artifacts:
paths: paths:
- /builds/artifact - ./builds/artifact