From 91ae877c2e5396a3b40c506b505c90e45883ff97 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Mon, 27 May 2019 17:53:26 -0700 Subject: [PATCH] Fix bad variable reference --- .gitlab-ci.yml | 7 +++---- source/Makefile | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2475a4f..701c6bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,13 +10,12 @@ before_script: after_script: - ls -la $CI_BUILDS_DIR - ls -la $CI_PROJECT_DIR - - ls -la $CI_PROJECT_DIR../ package: stage: build script: - cd source - debuild -us -uc -# artifacts: -# paths: -# - artifacts + artifacts: + paths: + - nginx_${NGINX_VERSION} diff --git a/source/Makefile b/source/Makefile index b8a979d..fe8dc50 100644 --- a/source/Makefile +++ b/source/Makefile @@ -1,6 +1,6 @@ # Relies on latest binary build artifact from https://git.ethitter.com/debian/nginx-build. get_binary: - curl -o fakeroot/usr/sbin/nginx "$NGINX_BINARY" + curl -o fakeroot/usr/sbin/nginx $NGINX_BINARY install: get_binary install fakeroot/etc/default/nginx /etc/default/nginx -- GitLab