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
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