Skip to content

Commit 7a0dad8

Browse files
authored
chore: setup v8 rc candidate and workflows (#3127)
* chore: setup v8 rc candidate and workflows * chore: setup v8 rc candidate and workflows
1 parent 0f855c0 commit 7a0dad8

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.github/workflows/check-pr.yml

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

1112
jobs:

.github/workflows/lint-pr-title.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
- 'v[0-9]+.[0-9]+.[0-9]+'
8+
- V8
89
types: [opened, edited, synchronize]
910

1011
jobs:

.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+
- V8
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/V8' }}
1717
runs-on: [macos-15]
1818
steps:
1919
- name: Connect Bot
@@ -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/develop' }};
41+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V8' }};
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/develop' }}
48+
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/V8' }}
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/develop' }}
69+
if: ${{ github.ref == 'refs/heads/V8' }}
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/develop' }}
75+
if: ${{ github.ref == 'refs/heads/V8' }}
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

release/next.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ configPromise.then((config) => {
1313
channel: 'beta',
1414
prerelease: 'beta',
1515
},
16+
{
17+
name: 'V8',
18+
channel: 'rc',
19+
prerelease: 'rc',
20+
},
1621
],
1722
}).then((result) => {
1823
// This logics avoid a overflow of next tags in github by removing the last

0 commit comments

Comments
 (0)