Skip to content

Commit f3c3ee3

Browse files
authored
chore: fix all of the GH workflow stuff related to v6 in prep for releasing (#2843)
1 parent 21f18e5 commit f3c3ee3

File tree

6 files changed

+7
-18
lines changed

6 files changed

+7
-18
lines changed

.github/workflows/check-pr.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
- main
8-
- v6.0.0
98
- 'v[0-9]+.[0-9]+.[0-9]+*beta*'
109
types: [opened, synchronize]
1110

.github/workflows/docusaurus.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ on:
55
branches:
66
- main # default branch name for each repo that docs should be push from
77
- develop
8-
- v6.0.0
98
env:
10-
branch_map: '{"refs/heads/main": "production", "refs/heads/develop": "staging", "refs/heads/v6.0.0": "production"}'
9+
branch_map: '{"refs/heads/main": "production", "refs/heads/develop": "staging"}'
1110
jobs:
1211
push_docusaurus:
1312
runs-on: ubuntu-latest

.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-
- v6.0.0
87

98
jobs:
109
publish-next:

.github/workflows/sample-distribution.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
name: sample-distribution
22

3-
## TODO: Make sure to revert the changes here when moving this to main. We want them right now to be able to have the SampleApp live with V6.
4-
53
concurrency:
64
group: sample-distribution-${{ github.ref }}
75
cancel-in-progress: true
@@ -15,7 +13,7 @@ on:
1513

1614
jobs:
1715
build_and_deploy_ios_testflight_qa:
18-
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/v6.0.0' }}
16+
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
1917
runs-on: [macos-14]
2018
steps:
2119
- name: Connect Bot
@@ -40,14 +38,14 @@ jobs:
4038
bundle exec pod install
4139
- name: Build and release Testflight QA
4240
working-directory: examples/SampleApp
43-
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/v6.0.0' }};
41+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
4442
env:
4543
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
4644
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
4745
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}
4846

4947
build_and_deploy_android_s3:
50-
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/v6.0.0' }}
48+
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
5149
runs-on: ubuntu-latest
5250
steps:
5351
- uses: actions/checkout@v2
@@ -68,13 +66,13 @@ jobs:
6866
rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
6967
- name: Configure AWS credentials
7068
uses: aws-actions/configure-aws-credentials@v1
71-
if: ${{ github.ref == 'refs/heads/v6.0.0' }}
69+
if: ${{ github.ref == 'refs/heads/develop' }}
7270
with:
7371
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7472
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7573
aws-region: us-east-1
7674
- name: Upload APK
77-
if: ${{ github.ref == 'refs/heads/v6.0.0' }}
75+
if: ${{ github.ref == 'refs/heads/develop' }}
7876
# https://getstream.io/downloads/rn-sample-app.apk
7977
run: |
8078
cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
branches:
1010
- develop
1111
- main
12-
- v6.0.0
1312

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

release/next.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,7 @@ configPromise.then((config) => {
1212
name: 'develop',
1313
channel: 'beta',
1414
prerelease: 'beta',
15-
},
16-
{
17-
name: 'v6.0.0',
18-
channel: 'rc',
19-
prerelease: 'rc',
20-
},
15+
}
2116
],
2217
}).then((result) => {
2318
// This logics avoid a overflow of next tags in github by removing the last

0 commit comments

Comments
 (0)