Skip to content

Commit

Permalink
pubsys: override kit repo for multi-arch image as well
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Berning <[email protected]>
  • Loading branch information
sam-berning committed Oct 2, 2024
1 parent 3a625a4 commit 03267df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/pubsys/src/kit/publish_kit/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ async fn publish_kit(
error::NoArchiveSnafu { path: kit_path }
);

let target_uri = format!("{}/{}:{}", vendor_registry_uri, kit_name, kit_version);
let target_uri = format!(
"{}/{}:{}",
vendor_registry_uri, repository_target, kit_version
);

info!("Pushing kit to {}", &target_uri);

Expand Down

0 comments on commit 03267df

Please sign in to comment.