Skip to content

Add allowedServerHooks option (#10) #14

Add allowedServerHooks option (#10)

Add allowedServerHooks option (#10) #14

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Publish & Deploy
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: pnpm/action-setup@v3.0.0
- name: Checkout Repo
uses: actions/checkout@main
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@main
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install Dependencies
run: pnpm i
- name: Create release PR or publish to npm
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}