From e5b3e1b62a3ccc517506272c2acb1a94610607ee Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 27 Nov 2023 22:15:11 +0100 Subject: [PATCH] feat: with username Signed-off-by: kjuulh --- crates/cuddle-ci/src/rust_service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cuddle-ci/src/rust_service.rs b/crates/cuddle-ci/src/rust_service.rs index 7b6fd5d..fc41050 100644 --- a/crates/cuddle-ci/src/rust_service.rs +++ b/crates/cuddle-ci/src/rust_service.rs @@ -344,7 +344,7 @@ impl MainAction for RustService { self.client .container() .from(update_deployments_docker_image) - .with_env_variable("GIT_USERNAME", "git") + .with_env_variable("GIT_USERNAME", "kjuulh") .with_env_variable( "GIT_PASSWORD", std::env::var("GIT_PASSWORD").expect("GIT_PASSWORD to be set"),