Created
March 31, 2020 02:17
-
-
Save tianhaoz95/853a9aff84a5d62686a2e8f54c3145bd 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
| jobs: | |
| release-android: | |
| name: release android app | |
| runs-on: ubuntu-latest | |
| steps: | |
| - ... | |
| - name: promote to beta track | |
| if: contains(github.event_name,'release')&&(github.event.release.prerelease) | |
| run: bundle exec fastlane beta | |
| - ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment