-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (33 loc) · 1.13 KB
/
app-distribution-daily.yml
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: app-distribution-daily
on:
schedule:
- cron: '31 7 * * MON-FRI'
jobs:
app-distribution-daily:
runs-on: ubuntu-latest
if: github.repository == 'Orange-OpenSource/ods-android'
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up our JDK environment
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Set up signing configuration
uses: ./.github/actions/setup-signing
with:
keystore: ${{ secrets.SIGNING_KEYSTORE }}
store-password: ${{ secrets.SIGNING_STORE_PASSWORD }}
key-alias: ${{ secrets.SIGNING_KEY_ALIAS }}
key-password: ${{ secrets.SIGNING_KEY_PASSWORD }}
- name: Upload APK to Firebase App Distribution
uses: ./.github/actions/app-distribution
with:
append-git-sha-to-version-name: 'true'
git-tag-prefix: 'ci/daily-app'
group: 'ods-android-internal-tests'
github-token: ${{ secrets.GITHUB_TOKEN }}
firebase-token: ${{ secrets.FIREBASE_TOKEN }}