From 732bf3d26329a56423aa8076512e2c446d17f636 Mon Sep 17 00:00:00 2001 From: diabhey Date: Mon, 11 Dec 2023 13:19:15 +0100 Subject: [PATCH] fix: linting errors --- dagger-ci.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dagger-ci.rs b/dagger-ci.rs index 1d7f9db..9a42872 100644 --- a/dagger-ci.rs +++ b/dagger-ci.rs @@ -8,9 +8,7 @@ async fn main() -> eyre::Result<()> { let _reg = client .container() .build(context_dir.id().await?) - .publish(format!( - "registry.digitalocean.com/diabhey/hivenetes/bots:dagger" - )) + .publish("registry.digitalocean.com/diabhey/hivenetes/bots:dagger".to_string()) .await?; println!("Published image to: {:?}", _reg);