Skip to content

Commit

Permalink
[TO REVERT] Add temp lane to test git push permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia committed Jul 2, 2024
1 parent afe335d commit fdec968
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .buildkite/new-beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,11 @@ steps:
bundle exec fastlane new_beta_release skip_confirm:true
agents:
queue: "tumblr-metal"

steps:
- label: "Test Git Push 👀"
plugins: [$CI_TOOLKIT]
command: |
bundle exec fastlane test_git_push
agents:
queue: "tumblr-metal"
10 changes: 10 additions & 0 deletions fastlane/lanes/release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,16 @@
create_release_management_pull_request('trunk', "Merge #{new_version} code freeze into trunk")
end

lane :test_git_push do |options|
UI.message 'Bumping beta version and build code...'
VERSION_FILE.write_version(
version_name: code_freeze_beta_version,
version_code: next_build_code
)
commit_version_bump
push_to_git_remote(tags: false)
end

#####################################################################################
# new_beta_release
# -----------------------------------------------------------------------------------
Expand Down

0 comments on commit fdec968

Please sign in to comment.