Skip to content

Commit f38ae11

Browse files
authored
Merge pull request #2850 from GetStream/fix/v5-deployment-pipeline
fix: add V5 branch configuration
2 parents 236029f + 41517b3 commit f38ae11

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/check-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- develop
77
- main
8+
- V5
89
- 'v[0-9]+.[0-9]+.[0-9]+*beta*'
910
types: [opened, synchronize]
1011

.github/workflows/next-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- develop
7+
- V5
78

89
jobs:
910
publish-next:

.github/workflows/sample-distribution.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
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/V5' }}
1717
runs-on: [macos-14]
1818
steps:
1919
- name: Connect Bot
@@ -36,14 +36,14 @@ jobs:
3636
run: bundle exec pod install
3737
- name: Build and release Testflight QA
3838
working-directory: examples/SampleApp
39-
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
39+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V5' }};
4040
env:
4141
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
4242
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
4343
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}
4444

4545
build_and_deploy_android_s3:
46-
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
46+
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/V5' }}
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v2
@@ -64,13 +64,13 @@ jobs:
6464
rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
6565
- name: Configure AWS credentials
6666
uses: aws-actions/configure-aws-credentials@v1
67-
if: ${{ github.ref == 'refs/heads/develop' }}
67+
if: ${{ github.ref == 'refs/heads/V5' }}
6868
with:
6969
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7070
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7171
aws-region: us-east-1
7272
- name: Upload APK
73-
if: ${{ github.ref == 'refs/heads/develop' }}
73+
if: ${{ github.ref == 'refs/heads/V5' }}
7474
# https://getstream.io/downloads/rn-sample-app.apk
7575
run: |
7676
cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk

.github/workflows/sdk-size-metrics.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches:
1010
- develop
1111
- main
12+
- V5
1213

1314
env:
1415
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI

release/next.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ configPromise.then((config) => {
88
...config,
99
branches: [
1010
'main',
11+
'V5',
1112
{
1213
name: 'develop',
1314
channel: 'beta',

0 commit comments

Comments
 (0)