Skip to content

Commit b6e7893

Browse files
committed
Revert "chore: setup v8 rc candidate and workflows (#3127)"
This reverts commit 7a0dad8.
1 parent d8a2921 commit b6e7893

File tree

5 files changed

+5
-13
lines changed

5 files changed

+5
-13
lines changed

.github/workflows/check-pr.yml

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

1211
jobs:

.github/workflows/lint-pr-title.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- develop
77
- 'v[0-9]+.[0-9]+.[0-9]+'
8-
- V8
98
types: [opened, edited, synchronize]
109

1110
jobs:

.github/workflows/next-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- develop
7-
- V8
87

98
jobs:
109
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/V8' }}
16+
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
1717
runs-on: [macos-15]
1818
steps:
1919
- name: Connect Bot
@@ -41,14 +41,14 @@ jobs:
4141
bundle exec pod install
4242
- name: Build and release Testflight QA
4343
working-directory: examples/SampleApp
44-
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V8' }};
44+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
4545
env:
4646
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
4747
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
4848
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}
4949

5050
build_and_deploy_android_s3:
51-
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/V8' }}
51+
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v2
@@ -69,13 +69,13 @@ jobs:
6969
rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
7070
- name: Configure AWS credentials
7171
uses: aws-actions/configure-aws-credentials@v1
72-
if: ${{ github.ref == 'refs/heads/V8' }}
72+
if: ${{ github.ref == 'refs/heads/develop' }}
7373
with:
7474
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7575
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7676
aws-region: us-east-1
7777
- name: Upload APK
78-
if: ${{ github.ref == 'refs/heads/V8' }}
78+
if: ${{ github.ref == 'refs/heads/develop' }}
7979
# https://getstream.io/downloads/rn-sample-app.apk
8080
run: |
8181
cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk

release/next.js

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

0 commit comments

Comments
 (0)