Skip to content

Nightly Release Branch #24

Nightly Release Branch

Nightly Release Branch #24

name: Nightly Release Branch
on:
schedule:
# Run daily at 2:30am UTC
- cron: '30 2 * * 1-5'
jobs:
release:
# prevents this action from running on forks
if: github.repository_owner == 'facebook'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ssh-key: ${{ secrets.SSH_KEY }}
fetch-depth: 0
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: |
git config user.name "Lexical GitHub Actions Bot"
git config user.email "<>"
- run: npm install
- run: npm run increment-version -- --i prerelease
- run: git push -u git@github.com:facebook/lexical.git --follow-tags