-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (46 loc) · 1.82 KB
/
ci.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
name: CI
on:
push:
branches: [ develop ]
jobs:
integrate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Decode Keystore
env:
KEYSTORE_BASE64: ${{ secrets.RELEASE_KEY_STORE }}
run: |
echo $KEYSTORE_BASE64 | base64 -di > app-android-journal3/release_signing.jks
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle and SonarCloud
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }}
RELEASE_KEY_STORE: ${{ secrets.RELEASE_KEY_STORE }}
RELEASE_KEY_STORE_PASSWORD: ${{ secrets.RELEASE_KEY_STORE_PASSWORD }}
RELEASE_KEY_ALIAS: ${{ secrets.RELEASE_KEY_ALIAS }}
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}
RELEASE_KEY_HERE_API: ${{ secrets.RELEASE_KEY_HERE_API }}
DEBUG_KEY_HERE_API: ${{ secrets.DEBUG_KEY_HERE_API }}
RELEASE_KEY_OAI_API: ${{ secrets.RELEASE_KEY_OAI_API }}
DEBUG_KEY_OAI_API: ${{ secrets.DEBUG_KEY_OAI_API }}
RELEASE_KEY_SENTRY: ${{ secrets.RELEASE_KEY_SENTRY }}
DEBUG_KEY_SENTRY: ${{ secrets.DEBUG_KEY_SENTRY }}
run: ./gradlew clean build sonarqube
- name: Archive built APKs and their mapping files
uses: actions/upload-artifact@v4
with:
name: apk-and-mapping-artifacts
path: |
app-android-journal3/build/outputs/apk/debug
app-android-journal3/build/outputs/apk/release
app-android-journal3/build/outputs/mapping/release