Add remaining release creation CLI args

This commit is contained in:
2025-05-24 18:47:35 -05:00
parent 973d9aa6c6
commit c5efb0e9f7

View File

@@ -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,
},
}