2023.9.2 #57
Workflow file for this run
This file contains 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
name: Production Deploy | |
on: | |
workflow_dispatch: | |
release: | |
types: [ released ] | |
jobs: | |
play_promote_production: | |
name: Play Publish Production | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- uses: ./.github/actions/inflate-secrets | |
name: Inflate Secrets | |
with: | |
keystore: ${{ secrets.ORIGINAL_KEYSTORE_FILE }} | |
google-services: ${{ secrets.GOOGLESERVICES }} | |
firebase-creds: ${{ secrets.FIREBASECREDS }} | |
playstore-creds: ${{ secrets.PLAYSTORECREDS }} | |
- name: Promote to Beta to Production Play Store | |
run: bundle exec fastlane promote_to_production | |
- name: Promote to Beta to Production Play Store | |
run: bundle exec fastlane submit_amazon |