Skip to content

Commit

Permalink
strip prefix in release name
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Aug 25, 2019
1 parent d072f41 commit 061d1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 061d1ab

Please sign in to comment.