mirror of
https://github.com/kunkunsh/kunkun-ext-ossinsight.git
synced 2025-04-03 17:16:41 +00:00
ci: Publish to npm
This commit is contained in:
parent
af83fd397b
commit
da3091fa68
36
.github/workflows/npm-publish.yml
vendored
Normal file
36
.github/workflows/npm-publish.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
# 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://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
||||
|
||||
name: NPM Package Publish
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- name: Test
|
||||
run: |
|
||||
bun install
|
||||
bun test --coverage
|
||||
|
||||
publish-npm:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
registry-url: https://registry.npmjs.org/
|
||||
- run: npm publish --provenance --access public
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 9.2 KiB |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://schema.kunkun.sh",
|
||||
"name": "@huakunshen/ext-ossinsight",
|
||||
"name": "kunkun-ext-ossinsight",
|
||||
"version": "0.0.1",
|
||||
"type": "module",
|
||||
"kunkun": {
|
||||
@ -52,6 +52,7 @@
|
||||
"typescript": "^5.7.3"
|
||||
},
|
||||
"files": [
|
||||
"demo-images",
|
||||
"./dist",
|
||||
".gitignore"
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user