fix: use container skopeo (#110)

the `os_version` is defaulting to the `image_tag` inside containers and
causing our template to use latest tag

---------

Co-authored-by: Gerald Pinder <gmpinder@gmail.com>
This commit is contained in:
Hikari 2024-03-11 18:23:42 -05:00 committed by GitHub
parent c084592934
commit 580c3d6ce7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 567 additions and 383 deletions

View file

@ -21,6 +21,9 @@ pub struct ContainerFileTemplate<'a> {
#[builder(default)]
export_script: ExportsTemplate,
#[builder(setter(into))]
os_version: Cow<'a, str>,
}
#[derive(Debug, Clone, Default, Template)]