diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..45d612f --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -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}} diff --git a/jsr.json b/jsr.json index ef7db0d..c2d2afc 100644 --- a/jsr.json +++ b/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", diff --git a/package.json b/package.json index fb1583f..2e43032 100644 --- a/package.json +++ b/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" }