-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1018 Bytes
/
cd.yml
File metadata and controls
38 lines (36 loc) · 1018 Bytes
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
name: CD - publish on Google Play
on:
push:
tags:
- '*'
jobs:
build_test_publish_job:
name: Build-Test-Publish job
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: false
cache-overwrite-existing: true
- name: Decrypt large secret
run: ./.github/scripts/decrypt_secret.sh
env:
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
- name: Build, Test & Upload to Google Play
run: fastlane build_bundle_publish
- name: Archive build artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: output-artifacts
path: |
app/build/outputs
app/build/reports