Skip to content

Commit d20a7bf

Browse files
committed
Adjust to release-toolkit new action names
1 parent 2317280 commit d20a7bf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

fastlane/lanes/release.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676

7777
push_to_git_remote(tags: false)
7878

79-
setbranchprotection(repository: GHHELPER_REPO, branch: "release/#{new_version}")
80-
setfrozentag(repository: GHHELPER_REPO, milestone: new_version)
79+
set_branch_protection(repository: GHHELPER_REPO, branch: "release/#{new_version}")
80+
set_milestone_frozen_marker(repository: GHHELPER_REPO, milestone: new_version)
8181
end
8282

8383
#####################################################################################
@@ -293,7 +293,7 @@
293293
release_branch = "release/#{current_release_version}"
294294

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

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

317317
# Wrap up
318-
setfrozentag(repository: GHHELPER_REPO, milestone: version_name, freeze: false)
318+
set_milestone_frozen_marker(repository: GHHELPER_REPO, milestone: version_name, freeze: false)
319319
create_new_milestone(repository: GHHELPER_REPO)
320320
close_milestone(repository: GHHELPER_REPO, milestone: version_name)
321321

0 commit comments

Comments
 (0)