13
13
14
14
jobs :
15
15
build_and_deploy_ios_testflight_qa :
16
- name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop ' }}
16
+ name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/V7 ' }}
17
17
runs-on : [macos-14]
18
18
steps :
19
19
- name : Connect Bot
@@ -38,14 +38,14 @@ jobs:
38
38
bundle exec pod install
39
39
- name : Build and release Testflight QA
40
40
working-directory : examples/SampleApp
41
- run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop ' }};
41
+ run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V7 ' }};
42
42
env :
43
43
MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
44
44
MATCH_GIT_BASIC_AUTHORIZATION : ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
45
45
APPSTORE_API_KEY : ${{ secrets.APPSTORE_API_KEY }}
46
46
47
47
build_and_deploy_android_s3 :
48
- name : Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop ' }}
48
+ name : Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/V7 ' }}
49
49
runs-on : ubuntu-latest
50
50
steps :
51
51
- uses : actions/checkout@v2
@@ -66,13 +66,13 @@ jobs:
66
66
rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
67
67
- name : Configure AWS credentials
68
68
uses : aws-actions/configure-aws-credentials@v1
69
- if : ${{ github.ref == 'refs/heads/develop ' }}
69
+ if : ${{ github.ref == 'refs/heads/V7 ' }}
70
70
with :
71
71
aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
72
72
aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
73
73
aws-region : us-east-1
74
74
- name : Upload APK
75
- if : ${{ github.ref == 'refs/heads/develop ' }}
75
+ if : ${{ github.ref == 'refs/heads/V7 ' }}
76
76
# https://getstream.io/downloads/rn-sample-app.apk
77
77
run : |
78
78
cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk
0 commit comments