Files
tiptap/.github/workflows/publish.yml
2022-09-10 22:00:57 +02:00

22 lines
488 B
YAML

name: Publish tiptap packages to npm
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: "https://registry.npmjs.org"
- name: Install node dependencies
run: npm ci
- name: Publish to npm registry
run: npm run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}