Skip to content

Create New Release Branch #49

Create New Release Branch

Create New Release Branch #49

Workflow file for this run

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