From b24d018c59eb2ef32d53085a660f517d63bc2ecb Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Fri, 7 Feb 2025 03:22:13 -0500 Subject: [PATCH] Add NPM publish GitHub workflow --- .github/workflows/npm-publish.yml | 36 +++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..8675f84 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,36 @@ +name: NPM Package Publish + +on: + push: + branches: [main] + release: + types: [created] + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - uses: actions/setup-node@v4 + with: + node-version: "22.x" + registry-url: "https://registry.npmjs.org" + - run: bun install + - run: bun run build + - name: Check if version is already published + run: | + PACKAGE_VERSION=$(node -p "require('./package.json').version") + PACKAGE_NAME=$(jq -r '.name' package.json) + npm view $PACKAGE_NAME@$PACKAGE_VERSION + continue-on-error: true + id: check_version + - name: Publish + if: steps.check_version.outcome != 'success' + run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} \ No newline at end of file diff --git a/package.json b/package.json index 5b252d1..cdd25a2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-speech-to-text", - "version": "0.0.7", + "version": "0.0.8", "license": "MIT", "kunkun": { "name": "Speech to Text",