fix: Fail if cosign private/public key can't be verified (#190)

This commit is contained in:
Gerald Pinder 2024-06-01 19:05:14 -04:00 committed by GitHub
parent 5e7524918f
commit 0b29929e93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 133 additions and 51 deletions

View file

@ -3,7 +3,8 @@ pub const ARCHIVE_SUFFIX: &str = "tar.gz";
pub const CONFIG_PATH: &str = "./config";
pub const CONTAINERFILES_PATH: &str = "./containerfiles";
pub const CONTAINER_FILE: &str = "Containerfile";
pub const COSIGN_PATH: &str = "./cosign.pub";
pub const COSIGN_PUB_PATH: &str = "./cosign.pub";
pub const COSIGN_PRIV_PATH: &str = "./cosign.key";
pub const FILES_PATH: &str = "./files";
pub const GITIGNORE_PATH: &str = ".gitignore";
pub const LOCAL_BUILD: &str = "/etc/bluebuild";