Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Publish

Publish #50

Workflow file for this run

name: Publish
on:
workflow_run:
workflows: ["Test"]
types: [completed]
push:
branches: [master]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: yarn install
- run: cd dev && yarn install
- 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 }}