Skip to content

Version Packages (#203) #100

Version Packages (#203)

Version Packages (#203) #100

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install Yarn
run: npm install --global yarn
- name: Install Dependencies
run: yarn
- run: git branch -a
- name: "Create Pull Request or Publish to npm"
uses: changesets/action@v1
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}