Skip to content

Commit

Permalink
release-tool: Don't embed release notes in git tag
Browse files Browse the repository at this point in the history
Now that the release notes are tracked as part of the
repository, we no longer need to embed them into the git tag.

Signed-off-by: Andrea Bolognani <[email protected]>
  • Loading branch information
andreabolognani committed Nov 8, 2023
1 parent 3e7a9a8 commit eec95ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releng/release-tool/release-tool.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ func (r *releaseData) makeTag(branch string) error {
return err
}

_, err = gitCommand("-C", r.repoDir, "tag", "-s", r.tag, "-F", r.releaseNotesFile)
_, err = gitCommand("-C", r.repoDir, "tag", "-s", r.tag)
if err != nil {
return err
}
Expand Down

0 comments on commit eec95ef

Please sign in to comment.