Skip to content

Commit d31c7a1

Browse files
authored
Fix publish_release lane (#21633)
1 parent bd5a8f0 commit d31c7a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/lanes/release.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@
362362
UI.important "Publishing release #{version_number} on GitHub"
363363

364364
publish_github_release(
365-
repository: GITHUB_REPO,
365+
repository: GHHELPER_REPO,
366366
name: version_number
367367
)
368368

@@ -612,7 +612,7 @@ def ensure_branch_does_not_exist!(branch_name)
612612
# Delete a branch remotely, after having removed any GitHub branch protection
613613
#
614614
def delete_remote_git_branch!(branch_name)
615-
remove_branch_protection(repository: GITHUB_REPO, branch: branch_name)
615+
remove_branch_protection(repository: GHHELPER_REPO, branch: branch_name)
616616

617617
Git.open(Dir.pwd).push('origin', branch_name, delete: true)
618618
end

0 commit comments

Comments
 (0)