1
0
Fork 0
mirror of synced 2026-06-05 12:58:19 +00:00

strip prefix in release name

This commit is contained in:
softprops 2019-08-25 14:48:05 -04:00
commit 061d1abd40

View file

@ -27,7 +27,7 @@ fn release(conf: &Config) -> Release {
..
} = conf;
Release {
tag_name: github_ref.clone(),
tag_name: github_ref.trim_start_matches("refs/tags/").into(),
body: input_body.clone(),
..Release::default()
}