fix: Remove single quotes from image_digest
This commit is contained in:
parent
b83cf574b8
commit
b374d54683
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ fn sign_images(image_name: &str, tag: &str) -> Result<()> {
|
|||
.stdout,
|
||||
)?;
|
||||
|
||||
let image_digest = format!("{image_name}@{image_digest}");
|
||||
let image_digest = format!("{image_name}@{}", image_digest.trim_matches('\''));
|
||||
|
||||
info!("Signing image: {image_digest}");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue