From f612164a97273357b06206cc405713f560550efb Mon Sep 17 00:00:00 2001 From: Mihai Patrascoiu Date: Thu, 9 May 2019 11:17:06 +0200 Subject: [PATCH] [CI] Treat value of DEBUG variable as string --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a2e08e46e1..717db341443 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ stages: - dpkg-buildpackage -b -us -uc -tc --buildinfo-option="-udeb_packages" --changes-option="-udeb_packages" - mkdir ${DIST}/ - cp deb_packages/*.deb ${DIST}/ - - if [[ $DEBUG = true ]] ; then cp deb_packages/*.ddeb ${DIST}/; fi + - if [[ $DEBUG = "true" ]] ; then cp deb_packages/*.ddeb ${DIST}/; fi artifacts: expire_in: 1 day paths: @@ -194,7 +194,7 @@ build:deb_ubuntu_bionic: <<: *deb_ubuntu_build_def variables: DIST: bionic - DEBUG: true + DEBUG: "true" only: - master - /^stable-.*$/ @@ -313,7 +313,7 @@ release:deb_ubuntu_bionic: <<: *deb_ubuntu_build_def variables: DIST: bionic - DEBUG: true + DEBUG: "true" only: - web except: