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
|
|
|
|
|
2023-03-27 23:46:58 +08:00
|
|
|
name: Release new version
|
2022-09-11 03:54:31 +08:00
|
|
|
|
2023-02-03 01:04:06 +08:00
|
|
|
# on github release published or workflow_dispatch
|
2022-09-11 03:50:06 +08:00
|
|
|
on:
|
2023-02-03 01:03:10 +08:00
|
|
|
workflow_dispatch:
|
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:
|
2024-05-02 12:28:20 +08:00
|
|
|
- uses: actions/checkout@v4.1.4
|
2023-11-18 15:43:39 +08:00
|
|
|
- uses: actions/setup-node@v4.0.0
|
2022-09-11 03:50:06 +08:00
|
|
|
with:
|
2024-06-11 20:24:10 +08:00
|
|
|
node-version: 20
|
2022-09-11 04:15:34 +08:00
|
|
|
registry-url: https://registry.npmjs.org/
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run publish
|
2023-03-27 23:46:58 +08:00
|
|
|
name: "Publish release (current) to NPM"
|
|
|
|
if: "!github.event.release.prerelease"
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
|
|
|
- run: npm run publish:pre
|
|
|
|
name: "Publish release (next) to NPM"
|
|
|
|
if: "github.event.release.prerelease"
|
2022-09-11 03:50:06 +08:00
|
|
|
env:
|
2022-09-11 04:15:34 +08:00
|
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|