Skip to content

Merge pull request #9 from web-pacotes/changeset-release/master #20

Merge pull request #9 from web-pacotes/changeset-release/master

Merge pull request #9 from web-pacotes/changeset-release/master #20

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- 'master'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- run: npm install --frozen-lockfile
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: npm run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Notify if published
if: steps.changesets.outputs.published == 'true'
uses: peter-evans/repository-dispatch@v2
with:
event-type: npm-published