Skip to content

Version Packages (#188) #126

Version Packages (#188)

Version Packages (#188) #126

Workflow file for this run

name: Publish
on:
workflow_run:
workflows: ['CI']
types:
- completed
push:
branches:
- 'main'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: yarn install --frozen-lockfile
- run: yarn test
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}