Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit 52413f8

Browse files
committed
chore(release): Post release to client, not IS
1 parent 776c6fe commit 52413f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ def file_edit(filename, regexp, replacement)
9797
end
9898

9999
def post_github_release(version, changes, token=ENV['GITHUB_TOKEN'])
100+
puts "Creating release on GitHub..."
100101
release_changes = changes.gsub(/^## #{version} /m, "## ").gsub("\n", "\\n")
101102
json=%Q[{"tag_name": "#{version}","target_commitish": "master","name": "#{version}","body": "#{release_changes}","draft": false,"prerelease": false}]
102-
sh(%{curl --data '#{json}' https://api.github.com/repos/algolia/instantsearch-android/releases?access_token=#{token}})
103+
sh(%{curl --data '#{json}' https://api.github.com/repos/algolia/algoliasearch-client-android/releases?access_token=#{token}})
103104
end

0 commit comments

Comments
 (0)