tiptap/.github/workflows/release.yml

32 lines
996 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: 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:
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@v4.1.4
- uses: actions/setup-node@v4.0.0
2022-09-11 03:50:06 +08:00
with:
node-version: 20
2022-09-11 04:15:34 +08:00
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run publish
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}}