Skip to content

Commit

Permalink
Fix publish_release lane (#21633)
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia authored Jan 28, 2025
1 parent bd5a8f0 commit d31c7a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/lanes/release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
UI.important "Publishing release #{version_number} on GitHub"

publish_github_release(
repository: GITHUB_REPO,
repository: GHHELPER_REPO,
name: version_number
)

Expand Down Expand Up @@ -612,7 +612,7 @@ def ensure_branch_does_not_exist!(branch_name)
# Delete a branch remotely, after having removed any GitHub branch protection
#
def delete_remote_git_branch!(branch_name)
remove_branch_protection(repository: GITHUB_REPO, branch: branch_name)
remove_branch_protection(repository: GHHELPER_REPO, branch: branch_name)

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

0 comments on commit d31c7a1

Please sign in to comment.