Skip to content

Commit

Permalink
Adjust to release-toolkit new action names
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia committed Jun 14, 2024
1 parent 69155d4 commit 479189c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fastlane/lanes/release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@

push_to_git_remote(tags: false)

setbranchprotection(repository: GHHELPER_REPO, branch: "release/#{new_version}")
setfrozentag(repository: GHHELPER_REPO, milestone: new_version)
set_branch_protection(repository: GHHELPER_REPO, branch: "release/#{new_version}")
set_milestone_frozen_marker(repository: GHHELPER_REPO, milestone: new_version)
end

#####################################################################################
Expand Down Expand Up @@ -293,7 +293,7 @@
release_branch = "release/#{current_release_version}"

# Remove branch protection first, so that we can push the final commits directly to the release branch
removebranchprotection(repository: GHHELPER_REPO, branch: release_branch)
remove_branch_protection(repository: GHHELPER_REPO, branch: release_branch)

# Don't check translation coverage for now since we are finalizing the release in CI
# check_translations_coverage
Expand All @@ -315,7 +315,7 @@
push_to_git_remote(tags: false)

# Wrap up
setfrozentag(repository: GHHELPER_REPO, milestone: version_name, freeze: false)
set_milestone_frozen_marker(repository: GHHELPER_REPO, milestone: version_name, freeze: false)
create_new_milestone(repository: GHHELPER_REPO)
close_milestone(repository: GHHELPER_REPO, milestone: version_name)

Expand Down

0 comments on commit 479189c

Please sign in to comment.