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

Merge pull request #4 from ThalaLabs/s/readme #7

Merge pull request #4 from ThalaLabs/s/readme

Merge pull request #4 from ThalaLabs/s/readme #7

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: pnpm/action-setup@v3
with:
version: 8
- run: pnpm i
- run: pnpm run test
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}