Skip to content

Add component to disable validation updates (#9) #17

Add component to disable validation updates (#9)

Add component to disable validation updates (#9) #17

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: pnpm/[email protected]
with:
version: 6.x.x
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: 'https://npm.pkg.github.com'
cache: pnpm
env:
NODE_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }}
- run: pnpm install
- uses: changesets/action@v1
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}