From 102ae99a346a0be90eedfada9d34b0ce2670bd2c Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Sat, 18 Jan 2025 03:34:32 -0500 Subject: [PATCH] ci: update npm publish workflow and bump version to 0.0.9 --- .github/workflows/npm-publish.yml | 20 ++++++++------------ package.json | 2 +- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index c148658..ad75a42 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -5,24 +5,13 @@ name: NPM Package Publish on: push: - branches: [ main ] + branches: [main] 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 @@ -33,6 +22,13 @@ jobs: with: node-version: 22 registry-url: https://registry.npmjs.org/ + + - uses: pnpm/action-setup@v2 + with: + version: latest + - uses: oven-sh/setup-bun@v2 + - run: pnpm install + - run: pnpm build - run: | PACKAGE_NAME=$(jq -r '.name' package.json) PACKAGE_VERSION=$(jq -r '.version' package.json) diff --git a/package.json b/package.json index d672e25..823f5a6 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "kunkun-ext-git-skyline", "repository": "https://github.com/kunkunsh/kunkun-ext-git-skyline", "private": false, - "version": "0.0.8", + "version": "0.0.9", "type": "module", "scripts": { "dev": "vite",