tiptap/.github/workflows/publish.yml

30 lines
789 B
YAML
Raw Normal View History

2022-09-11 04:15:34 +08:00
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Publish to NPM
2022-09-11 03:54:31 +08:00
# on github release published
2022-09-11 03:50:06 +08:00
on:
2023-02-03 01:03:10 +08:00
workflow_dispatch:
inputs:
version:
description: 'Version'
required: false
default: 'patch'
release:
types: [published]
2022-09-11 03:54:31 +08:00
2022-09-11 03:50:06 +08:00
jobs:
2022-09-11 04:15:34 +08:00
publish-npm:
2022-09-11 03:50:06 +08:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.1
2022-09-11 03:50:06 +08:00
with:
node-version: 16
2022-09-11 04:15:34 +08:00
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run publish
2022-09-11 03:50:06 +08:00
env:
2022-09-11 04:15:34 +08:00
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}