Skip to content

chore: v6 preparation ceremonies #2843

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches:
- develop
- main
- v6.0.0
- 'v[0-9]+.[0-9]+.[0-9]+*beta*'
types: [opened, synchronize]

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docusaurus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ on:
branches:
- main # default branch name for each repo that docs should be push from
- develop
- v6.0.0
env:
branch_map: '{"refs/heads/main": "production", "refs/heads/develop": "staging", "refs/heads/v6.0.0": "production"}'
branch_map: '{"refs/heads/main": "production", "refs/heads/develop": "staging"}'
jobs:
push_docusaurus:
runs-on: ubuntu-latest
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/next-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- develop
- v6.0.0

jobs:
publish-next:
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/sample-distribution.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: sample-distribution

## 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.

concurrency:
group: sample-distribution-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -15,7 +13,7 @@ on:

jobs:
build_and_deploy_ios_testflight_qa:
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/v6.0.0' }}
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
runs-on: [macos-14]
steps:
- name: Connect Bot
Expand All @@ -40,14 +38,14 @@ jobs:
bundle exec pod install
- name: Build and release Testflight QA
working-directory: examples/SampleApp
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/v6.0.0' }};
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}

build_and_deploy_android_s3:
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/v6.0.0' }}
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -68,13 +66,13 @@ jobs:
rm -rf $HOME/.gradle/caches/ && ./gradlew assembleRelease
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
if: ${{ github.ref == 'refs/heads/v6.0.0' }}
if: ${{ github.ref == 'refs/heads/develop' }}
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Upload APK
if: ${{ github.ref == 'refs/heads/v6.0.0' }}
if: ${{ github.ref == 'refs/heads/develop' }}
# https://getstream.io/downloads/rn-sample-app.apk
run: |
cp examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk rn-sample-app.apk
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/sdk-size-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
branches:
- develop
- main
- v6.0.0

env:
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI
Expand Down
7 changes: 1 addition & 6 deletions release/next.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ configPromise.then((config) => {
name: 'develop',
channel: 'beta',
prerelease: 'beta',
},
{
name: 'v6.0.0',
channel: 'rc',
prerelease: 'rc',
},
}
],
}).then((result) => {
// This logics avoid a overflow of next tags in github by removing the last
Expand Down
Loading