From ac1f4ef0fc45016ec119dae1425565676870304e Mon Sep 17 00:00:00 2001 From: aminecmi Date: Sun, 2 Oct 2022 13:38:48 +0200 Subject: [PATCH] Trying to fix env variable not set. --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 11c782e..3927095 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,9 +19,9 @@ steps: image: node:14 commands: - npm install - - npm run build + - REACT_APP_API_BASE_URL=$BASE_URL npm run build environment: - REACT_APP_API_BASE_URL: + BASE_URL: from_secret: baseurl - name: saveNodeModules