Skip to content

fix: Make autolinks working for formatted text (#5214) #655

fix: Make autolinks working for formatted text (#5214)

fix: Make autolinks working for formatted text (#5214) #655

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
if: contains(github.ref, '-next.')
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run prepare-release
- run: node ./scripts/npm/release.js --non-interactive --dry-run=${{ secrets.RELEASE_DRY_RUN }} --channel next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}