-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (56 loc) · 1.78 KB
/
build-android-apk.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: build-android-apk
on:
workflow_dispatch:
push:
branches: [master]
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install npm dependencies
run: |
cd example
npm install
build:
needs: install-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install npm dependencies
run: |
cd example
npm install
- name: Overwrite index.js
run: |
cd example
rm index.js
mv json-demo-build.js index.js
- name: Overwrite node module
run: |
rsync -Rr . example/node_modules/@argyleio/argyle-plugin-react-native
- name: Build Android Release
run: |
cd example/android
./gradlew assembleRelease
- name: Archive APK
uses: actions/upload-artifact@v3
with:
name: apk-app-development-release
path: example/android/app/build/outputs/apk/release/app-release.apk
- name: Upload app to browserstack
run: |
curl -u ${{ secrets.ARGYLE_MOBILE_RUN_BS_USER }}:${{ secrets.ARGYLE_MOBILE_RUN_BS_KEY }} -X POST "https://api-cloud.browserstack.com/app-automate/upload" -F "file=@example/android/app/build/outputs/apk/release/app-release.apk" -F 'data={"custom_id": "android_react_latest"}'
trigger-auto-tests:
needs: build
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: argyle-systems
repo: argyle-qa-mobile
workflow_file_name: test_dev_rn_android.yaml
ref: master
client_payload: '{"id": "auto-trigger-android-rn-tests"}'
github_token: ${{ secrets.ARGYLE_LINK_QA_WORKFLOW_TRIGGER }}
wait_workflow: false