6 releases
0.3.0 | Feb 1, 2025 |
---|---|
0.2.0 | Apr 11, 2024 |
0.1.3 | Mar 26, 2024 |
0.1.2 | Sep 22, 2023 |
0.1.1 | Mar 16, 2023 |
#1038 in Development tools
1,202 downloads per month
14KB
273 lines
cd_env
Detects CD (continuous deploy, deliver, distribute) information from the current environment. Most commonly, this only works as part of the deploy build step, and not the deploy run step.
Usage
To start, detect if in a CD or general deploy environment.
cd_env::is_cd();
Or detect which CD provider is being used.
cd_env::detect_provider(); // Render
And most importantly, extract information about the deploy environment and CD provider.
use cd_env::get_environment;
if let Some(cd) = get_environment() {
println!("Provider: {:?}", cd.provider);
println!("Branch: {}", ci.branch);
println!("Commit: {}", ci.revision);
}
VCS information isn't always available depending on the provider.
Dependencies
~0.3–0.9MB
~21K SLoC