automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-04-26 08:16:07 +00:00 committed by github-actions[bot]
parent e7ab89f050
commit 97b36966d5
1 changed files with 2 additions and 2 deletions

View File

@ -31,14 +31,14 @@ async fn main() -> Result<()> {
let mut apis = ApiCollection::build(&cfg).await?; let mut apis = ApiCollection::build(&cfg).await?;
match release(&cfg, &mut apis).await { match release(&cfg, &mut apis).await {
Ok(_) => None, Ok(_) => None,
Err(err) => Some(err) Err(err) => Some(err),
} }
} }
Commands::Publish { .. } => { Commands::Publish { .. } => {
// TODO: check if repo is dirty and create a commit with a given option // TODO: check if repo is dirty and create a commit with a given option
match publish(&cfg).await { match publish(&cfg).await {
Ok(_) => None, Ok(_) => None,
Err(err) => Some(err) Err(err) => Some(err),
} }
} }
Commands::Version {} => { Commands::Version {} => {