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:08:11 +08:00
|
|
|
types:
|
|
|
|
- published
|
|
|
|
- prereleased
|
|
|
|
- released
|
|
|
|
- created
|
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 }}
|