From cc8dc7a1a8508e2a32248f1fed9594b6031b131b Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Fri, 15 May 2026 07:35:52 -0700 Subject: [PATCH] change to parametrized git user --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 15d50d8..a8008be 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,10 +7,11 @@ steps: image: node:current environment: REPOSITORY: fedilearns-site + GIT_USER: inherentlee GIT_TOKEN: from_secret: GIT_TOKEN commands: - - git config credential.helper '!f() { echo username=inherentlee; echo "password=$GIT_TOKEN"; };f' + - git config credential.helper '!f() { echo username=$GIT_USER; echo "password=$GIT_TOKEN"; };f' - git submodule update --remote --init --merge - npm install - npm run build