homeboy 0.124.11

CLI for multi-component deployment and development workflow automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod changelog;
mod executor;
mod pipeline;
mod types;
mod utils;
pub mod version;
mod workflow;

pub use pipeline::{plan, run};
pub use types::{
    BatchReleaseComponentResult, BatchReleaseResult, BatchReleaseSummary, ReleaseArtifact,
    ReleaseCommandInput, ReleaseCommandResult, ReleaseDeploymentResult, ReleaseDeploymentSummary,
    ReleaseOptions, ReleasePlan, ReleasePlanStatus, ReleasePlanStep, ReleaseProjectDeployResult,
    ReleaseRun, ReleaseRunResult, ReleaseRunSummary, ReleaseStepResult, ReleaseStepStatus,
};
pub use utils::{extract_latest_notes, parse_release_artifacts};
pub use workflow::{run_batch, run_command};