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