From 7b9f1c0fb1722f71cd83766455d63f7ff4897844 Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Wed, 18 Sep 2019 14:15:54 -0300 Subject: [PATCH] debug 1 --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index e419d5f..9fbf24a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -18,12 +18,12 @@ steps: - name: version-minimal image: debian:buster-slim commands: - - bash <<< 'source unit/version && echo -n "${NXT_VERSION}-minimal" > .tags' + - bash -c 'source unit/version && env && echo -n "${NXT_VERSION}-minimal" > .tags' - name: latest-minimal image: debian:buster-slim commands: - - bash <<< 'source unit/version && echo -n ",latest-minimal" >> .tags' + - bash -c 'source unit/version && echo -n ",latest-minimal" >> .tags' when: branch: - master @@ -44,12 +44,12 @@ steps: - name: version-php7.3 image: debian:buster-slim commands: - - bash <<< 'source unit/version && echo -n "${NXT_VERSION}-php7.3" > .tags' + - bash -c 'source unit/version && echo -n "${NXT_VERSION}-php7.3" > .tags' - name: latest-php7.3 image: debian:buster-slim commands: - - bash <<< 'source unit/version && echo -n ",latest-php7.3" >> .tags' + - bash -c 'source unit/version && echo -n ",latest-php7.3" >> .tags' when: branch: - master