generated from PlexSheep/rs-base
Compare commits
No commits in common. "e65378436bd1f03812ad0d4f21f71fd12c85d87d" and "b2bd3a9dde5aeae80b653d23dba82db5cb203653" have entirely different histories.
e65378436b
...
b2bd3a9dde
2 changed files with 4 additions and 4 deletions
|
@ -22,8 +22,8 @@ async fn main() -> Result<()> {
|
||||||
println!("{}", Changelog::build(&cfg)?);
|
println!("{}", Changelog::build(&cfg)?);
|
||||||
}
|
}
|
||||||
Commands::Release { .. } => {
|
Commands::Release { .. } => {
|
||||||
let apis = init_servers(&cfg).await?;
|
init_servers(&cfg).await?;
|
||||||
release(&cfg, &mut apis).await?;
|
release(&cfg).await?;
|
||||||
}
|
}
|
||||||
Commands::Publish { .. } => {
|
Commands::Publish { .. } => {
|
||||||
publish(&cfg).await?;
|
publish(&cfg).await?;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use crate::{config::Config, error::*, serverapi::ApiCollection};
|
use crate::{config::Config, error::*};
|
||||||
|
|
||||||
pub async fn release(cfg: &Config, apis: &mut ApiCollection) -> Result<()> {
|
pub async fn release(cfg: &Config) -> Result<()> {
|
||||||
// TODO: git tag
|
// TODO: git tag
|
||||||
// TODO: version bump
|
// TODO: version bump
|
||||||
// TODO: version select interactive
|
// TODO: version select interactive
|
||||||
|
|
Loading…
Add table
Reference in a new issue