Create New Release Branch #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create New Release Branch | |
on: | |
workflow_dispatch: | |
inputs: | |
increment: | |
description: 'Version Increment' | |
required: true | |
default: 'prerelease' | |
type: choice | |
options: | |
- prerelease | |
- patch | |
- minor | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ssh-key: ${{ secrets.SSH_KEY }} | |
fetch-depth: 0 | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
- run: | | |
git config user.name "Lexical GitHub Actions Bot" | |
git config user.email "<>" | |
- run: npm install | |
- id: latest | |
uses: pozetroninc/github-action-get-latest-release@master | |
with: | |
owner: facebook | |
repo: lexical | |
excludes: draft | |
- run: LATEST_RELEASE=${{ steps.latest.outputs.release }} npm run increment-version -- --i $INCREMENT | |
env: | |
INCREMENT: ${{ inputs.increment }} | |
- run: npm install | |
- run: git push -u git@github.com:facebook/lexical.git --follow-tags |