Skip to content

Commit a54e118

Browse files
committed
tag_name is now a required parameter for release creation
1 parent 25bbbbc commit a54e118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ruby_installer/build/release.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def upload_to_github(tag:, repo:, token: nil, files:)
9797
release = client.update_release(release.url, name: headline, body: body)
9898
else
9999
release = client.create_release(repo, tag,
100-
target_commitish: tag,
100+
tag_name: tag,
101101
name: headline,
102102
body: body,
103103
draft: true,

0 commit comments

Comments
 (0)