mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
25cac220d6
Allow passing in a few more inputs when manually publishing.
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
name: (Compiler) Publish Prereleases
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
commit_sha:
|
|
required: true
|
|
default: ''
|
|
type: string
|
|
release_channel:
|
|
required: true
|
|
type: string
|
|
dist_tag:
|
|
required: true
|
|
type: string
|
|
version_name:
|
|
required: true
|
|
type: string
|
|
secrets:
|
|
NPM_TOKEN:
|
|
required: true
|
|
|
|
env:
|
|
TZ: /usr/share/zoneinfo/America/Los_Angeles
|
|
# https://github.com/actions/cache/blob/main/tips-and-workarounds.md#cache-segment-restore-timeout
|
|
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1
|
|
GH_TOKEN: ${{ github.token }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: compiler
|
|
|
|
jobs:
|
|
publish_prerelease:
|
|
name: Publish prelease (${{ inputs.release_channel }}) ${{ inputs.commit_sha }} @${{ inputs.dist_tag }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: yarn
|
|
cache-dependency-path: compiler/yarn.lock
|
|
- name: Restore cached node_modules
|
|
uses: actions/cache@v4
|
|
id: node_modules
|
|
with:
|
|
path: "**/node_modules"
|
|
key: compiler-node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('compiler/**/yarn.lock') }}
|
|
- run: yarn install --frozen-lockfile
|
|
- name: Publish packages to npm
|
|
run: |
|
|
cp ./scripts/release/ci-npmrc ~/.npmrc
|
|
scripts/release/publish.js --frfr --ci --versionName=${{ inputs.version_name }} --tag ${{ inputs.dist_tag }}
|