Add remaining release creation CLI args
This commit is contained in:
10
src/cli.rs
10
src/cli.rs
@@ -16,7 +16,17 @@ pub struct Args {
|
||||
pub enum Commands {
|
||||
ListReleases,
|
||||
CreateRelease {
|
||||
#[arg()]
|
||||
body: String,
|
||||
#[arg(short, long, default_value_t = false)]
|
||||
draft: bool,
|
||||
#[arg()]
|
||||
name: String,
|
||||
#[arg(short, long)]
|
||||
prerelease: bool,
|
||||
#[arg()]
|
||||
tag_name: String,
|
||||
#[arg()]
|
||||
target_commitish: String,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user