mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This workflow bumps the Podfile.lock automatically when a new release happens. I decided not to use a js script in this case because all the commands are bash commands for git or cocoapods, therefore wrapping them all in a JS file would have added little to no benefit and only overheads. ## Changelog: [Internal] - Bumps podfile.lock automatically Pull Request resolved: https://github.com/facebook/react-native/pull/50345 Test Plan: GHA - tested as a separate workflow first, hardcoding the latest RC https://github.com/facebook/react-native/actions/runs/14127895380/job/39581024861?pr=50345 The flow correctly fails as the Podfile.lock has already been bumped in the release branch. Reviewed By: fabriziocucci Differential Revision: D72050261 Pulled By: cipolleschi fbshipit-source-id: 5c0666e80b037319c365fcf4d52e8e367c3445ea
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
name: Bump Podfile.lock
|
|
|
|
on:
|
|
workflow_call: # this directive allow us to call this workflow from other workflows
|
|
|
|
jobs:
|
|
bump-podfile-lock:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
- name: Install dependencies
|
|
uses: ./.github/actions/yarn-install
|
|
- name: Configure git
|
|
run: |
|
|
git config --local user.email "bot@reactnative.dev"
|
|
git config --local user.name "React Native Bot"
|
|
- name: Extract branch name
|
|
run: |
|
|
TAG="${{ github.ref_name }}";
|
|
BRANCH_NAME=$(echo "$TAG" | sed -E 's/v([0-9]+\.[0-9]+)\.[0-9]+(-rc\.[0-9]+)?/\1-stable/')
|
|
echo "Branch Name is $BRANCH_NAME"
|
|
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
|
|
- name: Checkout release branch
|
|
run: |
|
|
git checkout "$BRANCH_NAME"
|
|
git fetch
|
|
git pull origin "$BRANCH_NAME"
|
|
- name: Bump podfile.lock
|
|
run: |
|
|
cd packages/rn-tester
|
|
bundle install
|
|
bundle exec pod update hermes-engine --no-repo-update
|
|
- name: Commit changes
|
|
run: |
|
|
git add packages/rn-tester/Podfile.lock
|
|
git commit -m "[LOCAL] Bump Podfile.lock"
|
|
git push origin "$BRANCH_NAME"
|