vtag
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadey Ratio 2020-07-08 18:54:43 -04:00
parent 8ef626cbd2
commit 4397f691c9
1 changed files with 2 additions and 2 deletions

View File

@ -22,15 +22,15 @@ pub(crate) async fn run(
}
let desc = changelog::read(fname, tag.clone())?;
let cli = gitea::Client::new(common.server, common.token, crate::APP_USER_AGENT)?;
let vtag = format!("v{}", tag);
let cr = gitea::CreateRelease {
body: desc,
draft: rm.draft,
name: rm.name.or(Some(format!("Version {}", tag))).unwrap(),
prerelease: rm.pre_release,
tag_name: tag.clone(),
tag_name: vtag,
target_commitish: "HEAD".into(),
};