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:
Kasper Juul Hermansen 2024-02-03 19:39:05 +01:00
parent e475550004
commit a62a88915e
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

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 {