feat: remember to split output string
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-02-03 19:39:05 +01:00
parent e475550004
commit a62a88915e

View File

@@ -369,6 +369,10 @@ impl MainAction for RustService {
))
.await?;
let (_, image_tag) = image_tag
.split_once(':')
.ok_or(eyre::anyhow!("failed to split image tag at :"))?;
ctx.set_image_tag(image_tag)?;
if self.deployment {