Created
March 31, 2020 02:13
-
-
Save tianhaoz95/7d70eaa482e59342807e04c4d422268e to your computer and use it in GitHub Desktop.
release to internal and alpha with push
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
| jobs: | |
| release-android: | |
| name: release android app | |
| runs-on: ubuntu-latest | |
| steps: | |
| - ... | |
| - name: release app to internal track | |
| if: contains(github.event_name,'push') | |
| run: bundle exec fastlane internal | |
| - name: promote to alpha track | |
| if: contains(github.event_name,'push') | |
| run: bundle exec fastlane alpha | |
| - ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment