chore: Cleanup images and use hash for exports tag (#158)

I noticed that making changes to the exports script before a release
could cause modules to not build properly if breaking changes got pushed
out. To prevent this, I'm making it so that the hash of the commit is
put in the tag for the exports script image and that the CLI tool will
use that hash when building the `Containerfile`.
This commit is contained in:
Gerald Pinder 2024-04-13 01:55:50 -04:00 committed by GitHub
parent b5cca98676
commit e66e880857
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 85 additions and 42 deletions

View file

@ -27,6 +27,9 @@ pub struct ContainerFileTemplate<'a> {
#[builder(setter(into))]
registry: Cow<'a, str>,
#[builder(setter(into))]
exports_tag: Cow<'a, str>,
}
#[derive(Debug, Clone, Template, TypedBuilder)]