fix: Remove hard requirement for login creds to be able to push (#187)
Related to https://github.com/blue-build/github-action/issues/48
This commit is contained in:
parent
02b2fe5434
commit
9dd1ec90f4
8 changed files with 104 additions and 95 deletions
|
|
@ -17,6 +17,7 @@ which = "6"
|
|||
|
||||
anyhow.workspace = true
|
||||
chrono.workspace = true
|
||||
clap = { workspace = true, features = ["derive"] }
|
||||
colored.workspace = true
|
||||
env_logger.workspace = true
|
||||
format_serde_error.workspace = true
|
||||
|
|
@ -25,10 +26,6 @@ serde.workspace = true
|
|||
serde_yaml.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
||||
[dependencies.clap]
|
||||
workspace = true
|
||||
features = ["derive"]
|
||||
|
||||
[build-dependencies]
|
||||
syntect = "5.2.0"
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,10 @@ pub const IMAGE_VERSION_LABEL: &str = "org.opencontainers.image.version";
|
|||
|
||||
// BlueBuild vars
|
||||
pub const BB_BUILDKIT_CACHE_GHA: &str = "BB_BUILDKIT_CACHE_GHA";
|
||||
pub const BB_PASSWORD: &str = "BB_PASSWORD";
|
||||
pub const BB_REGISTRY: &str = "BB_REGISTRY";
|
||||
pub const BB_REGISTRY_NAMESPACE: &str = "BB_REGISTRY_NAMESPACE";
|
||||
pub const BB_USERNAME: &str = "BB_USERNAME";
|
||||
|
||||
// Docker vars
|
||||
pub const DOCKER_HOST: &str = "DOCKER_HOST";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue