-
-
Notifications
You must be signed in to change notification settings - Fork 968
40 lines (32 loc) · 1.06 KB
/
release.yml
File metadata and controls
40 lines (32 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Production Deploy
on: # yamllint disable-line rule:truthy
workflow_dispatch:
release:
types: [released]
env:
SUPPLY_UPLOAD_MAX_RETRIES: 5
permissions:
contents: read
jobs:
play_promote_production:
name: Play Publish Production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: ruby/setup-ruby@97ecb7b512899eb71ab1bf2310a624c6f1589ac6 # v1.308.0
with:
ruby-version: "4.0.4"
bundler-cache: false
- 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: Install Fastlane dependencies
run: bundle install
- name: Promote Beta to Production Play Store
run: bundle exec fastlane promote_to_production