mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
90d4d55122
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45063 While doing the release of 0.75, we have to fix the Create Release action a few times to get it right. This change contains the fixes from * https://github.com/facebook/react-native/commit/e36b46f0c970dc3f1f5b5058a8d10834acdb2667 * https://github.com/facebook/react-native/commit/1b891357b2f1995f2344cc991be423ca66fa6770 * https://github.com/facebook/react-native/commit/56e1c8bfdd57600e79c0b17de1d2fd933d20b8f9 * https://github.com/facebook/react-native/commit/03591318fbabdc0c06808316f471cc361b53c57f * https://github.com/facebook/react-native/commit/528097709aeef434b0d85565bfd89a4a9ff5644e * https://github.com/facebook/react-native/commit/f4b1dd1fa11374cae8a696833ad9ded0767cba8f ## Changelog [Internal] - Backport changes to Create Release github action Reviewed By: cortinico Differential Revision: D58782391 fbshipit-source-id: b68088fb8c4290efcb4599d1b090b18e401e4b66
55 lines
1.8 KiB
YAML
55 lines
1.8 KiB
YAML
name: Create release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'The version of React Native we want to release. For example 0.75.0-rc.0'
|
|
required: true
|
|
type: string
|
|
is_latest_on_npm:
|
|
description: 'Whether we want to tag this release as latest on NPM'
|
|
required: true
|
|
type: boolean
|
|
default: false
|
|
dry_run:
|
|
description: 'Whether the job should be executed in dry-run mode or not'
|
|
type: boolean
|
|
default: false
|
|
|
|
jobs:
|
|
create_release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.1.1
|
|
with:
|
|
token: ${{ secrets.REACT_NATIVE_BOT_GITHUB_TOKEN }}
|
|
- name: Check if on stable branch
|
|
id: check_stable_branch
|
|
run: |
|
|
BRANCH="$(git branch --show-current)"
|
|
PATTERN='^0\.[0-9]+-stable$'
|
|
if [[ $BRANCH =~ $PATTERN ]]; then
|
|
echo "On a stable branch"
|
|
echo "ON_STABLE_BRANCH=true" >> $GITHUB_OUTPUT
|
|
fi
|
|
- name: Print output
|
|
run: echo "ON_STABLE_BRANCH ${{steps.check_stable_branch.outputs.ON_STABLE_BRANCH}}"
|
|
- name: Check if tag already exists
|
|
id: check_if_tag_exists
|
|
run: |
|
|
TAG="v${{ inputs.version }}"
|
|
TAG_EXISTS=$(git tag -l "$TAG")
|
|
if [[ -n "$TAG_EXISTS" ]]; then
|
|
echo "Version tag already exists!"
|
|
echo "TAG_EXISTS=true" >> $GITHUB_OUTPUT
|
|
fi
|
|
- name: Execute Prepare Release
|
|
if: ${{ steps.check_stable_branch.outputs.ON_STABLE_BRANCH && !steps.check_if_tag_exists.outputs.TAG_EXISTS }}
|
|
uses: ./.github/actions/create-release
|
|
with:
|
|
version: ${{ inputs.version }}
|
|
is_latest_on_npm: ${{ inputs.is_latest_on_npm }}
|
|
dry_run: ${{ inputs.dry_run }}
|