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
|
|
|
|
2022-12-08 18:51:14 +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'
|
2022-12-08 18:51:14 +08:00
|
|
|
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
|
2022-11-05 00:29:39 +08:00
|
|
|
- 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}}
|