ci: add npm publish github action

This commit is contained in:
Huakun Shen 2025-01-14 03:40:47 -05:00
parent 4db8d65b5e
commit 48b7dff528
No known key found for this signature in database
3 changed files with 52 additions and 3 deletions

38
.github/workflows/npm-publish.yml vendored Normal file
View 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}}

View File

@ -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",

View File

@ -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"
}