mirror of
https://github.com/kunkunsh/kunkun-ext-image-processing.git
synced 2025-04-03 18:06:42 +00:00
ci: add npm publish github action
This commit is contained in:
parent
4db8d65b5e
commit
48b7dff528
38
.github/workflows/npm-publish.yml
vendored
Normal file
38
.github/workflows/npm-publish.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
# 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: pnpm/action-setup@v2
|
||||
with:
|
||||
version: latest
|
||||
- name: Build
|
||||
run: |
|
||||
pnpm install
|
||||
pnpm build
|
||||
|
||||
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}}
|
2
jsr.json
2
jsr.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "https://jsr.io/schema/config-file.v1.json",
|
||||
"name": "@kunkun/ext-image-processing",
|
||||
"version": "0.0.18",
|
||||
"version": "0.0.19",
|
||||
"license": "MIT",
|
||||
"lint": false,
|
||||
"exports": "./mod.ts",
|
||||
|
15
package.json
15
package.json
@ -1,7 +1,12 @@
|
||||
{
|
||||
"$schema": "https://schema.kunkun.sh",
|
||||
"name": "image-processing",
|
||||
"version": "0.0.18",
|
||||
"version": "0.0.19",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/kunkunsh/kunkun-ext-image-processing",
|
||||
"directory": "."
|
||||
},
|
||||
"kunkun": {
|
||||
"name": "Image Processing",
|
||||
"shortDescription": "Image Processing",
|
||||
@ -111,8 +116,14 @@
|
||||
"type": "module",
|
||||
"files": [
|
||||
"build",
|
||||
"dist",
|
||||
"mod.ts",
|
||||
"package.json",
|
||||
"README.md",
|
||||
"LICENSE",
|
||||
"deno-src",
|
||||
".gitignore"
|
||||
"src/types.ts",
|
||||
".npmrc"
|
||||
],
|
||||
"packageManager": "pnpm@9.15.3"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user