1313
1414jobs :
1515 build_and_deploy_ios_testflight_qa :
16- name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/feat/reactive-channel-list-poc ' }}
16+ name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop ' }}
1717 runs-on : [macos-14]
1818 steps :
1919 - name : Connect Bot
2525 - name : Install && Build - SDK and Sample App
2626 uses : ./.github/actions/install-and-build-sdk
2727 - name : Cache iOS pods
28- uses : actions/cache@v3
28+ uses : actions/cache@v2
2929 with :
3030 path : examples/SampleApp/ios/Pods
3131 key : ${{ runner.os }}-pods-${{ hashFiles('examples/SampleApp/ios/Podfile.lock') }}
@@ -38,14 +38,14 @@ jobs:
3838 bundle exec pod install
3939 - name : Build and release Testflight QA
4040 working-directory : examples/SampleApp
41- run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/feat/reactive-channel-list-poc ' }};
41+ run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop ' }};
4242 env :
4343 MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
4444 MATCH_GIT_BASIC_AUTHORIZATION : ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
4545 APPSTORE_API_KEY : ${{ secrets.APPSTORE_API_KEY }}
4646
4747 build_and_deploy_android_s3 :
48- name : Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/feat/reactive-channel-list-poc ' }}
48+ name : Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop ' }}
4949 runs-on : ubuntu-latest
5050 steps :
5151 - uses : actions/checkout@v2
@@ -66,13 +66,13 @@ jobs:
6666 rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
6767 - name : Configure AWS credentials
6868 uses : aws-actions/configure-aws-credentials@v1
69- if : ${{ github.ref == 'refs/heads/feat/reactive-channel-list-poc ' }}
69+ if : ${{ github.ref == 'refs/heads/develop ' }}
7070 with :
7171 aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
7272 aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7373 aws-region : us-east-1
7474 - name : Upload APK
75- if : ${{ github.ref == 'refs/heads/feat/reactive-channel-list-poc ' }}
75+ if : ${{ github.ref == 'refs/heads/develop ' }}
7676 # https://getstream.io/downloads/rn-sample-app.apk
7777 run : |
7878 cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk
0 commit comments