feat: Add GitHub Actions workflow for NPM package publishing

This commit is contained in:
Huakun Shen 2025-03-18 07:52:49 -04:00
parent 65baa6d367
commit 1325c12b2b
No known key found for this signature in database

35
.github/workflows/kk-ext-publish.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: NPM Package Publish
on:
push:
branches: [kunkun-ext]
release:
types: [created]
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm run build
- name: Check if version is already published
run: |
PACKAGE_VERSION=$(jq -r '.version' package.json)
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}}