tiptap/.github/workflows/publish.yml

22 lines
488 B
YAML
Raw Normal View History

2022-09-11 03:50:06 +08:00
name: Publish tiptap packages to npm
2022-09-11 03:54:31 +08:00
2022-09-11 03:50:06 +08:00
on:
release:
2022-09-11 04:00:57 +08:00
types: [published]
2022-09-11 03:54:31 +08:00
2022-09-11 03:50:06 +08:00
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 }}