Skip to content

docs: update README.md #7

docs: update README.md

docs: update README.md #7

on:
push:
branches:
- main
name: Deploy
jobs:
deploy-packages:
name: Packages
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn build
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn changeset:publish
version: yarn changeset:version
env:
GITHUB_TOKEN: ${{ github.token }}