Created
September 12, 2020 18:41
-
-
Save mariia-cherniuk/1a55dafbf5b65dac6076f7333f7e9d93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc "Releases a \"Pending Developer Release\" version" | |
lane :release_to_users do | |
move_to_ready_for_sale | |
slack(message: slack_announcement, default_payloads: []) | |
end | |
private_lane :move_to_ready_for_sale do | |
ENV['FASTLANE_USER'] = CredentialsManager::AppfileConfig.try_fetch_value(:itunes_connect_id) | |
gs_move_to_ready_for_sale(app_identifier: "your_app_identifier") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment