Skip to content

Commit

Permalink
Merge pull request #697 from Fryguy/allow_signed_tags
Browse files Browse the repository at this point in the history
Allow for signed tags with automatic messages
  • Loading branch information
bdunne committed Dec 7, 2021
2 parents 7562fe5 + 024a167 commit 6938b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks_private/release.rake
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ task :release do
# Create the commit and tag
exit $?.exitstatus unless system("git add #{ae_file}")
exit $?.exitstatus unless system("git commit -m 'Release #{version}'")
exit $?.exitstatus unless system("git tag #{version}")
exit $?.exitstatus unless system("git tag #{version} -m 'Release #{version}'")

puts
puts "The commit on #{branch} with the tag #{version} has been created"
Expand Down

0 comments on commit 6938b81

Please sign in to comment.