Skip to content

Fixed some typos found by a spell checker in the docs (#1141) #330

Fixed some typos found by a spell checker in the docs (#1141)

Fixed some typos found by a spell checker in the docs (#1141) #330

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
if: github.repository == 'changesets/changesets'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
# https://github.com/actions/checkout
uses: actions/checkout@v2
- name: Setup Node.js 16.x
# https://github.com/actions/setup-node
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install Dependencies
run: yarn
- name: Create Release Pull Request or Publish to npm
# https://github.com/changesets/action
uses: changesets/action@v1
with:
# this expects you to have a script called release which does a build for your packages and calls changeset publish
publish: yarn release
version: yarn version-packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}