ci: add github action workflow for publishing npm

This commit is contained in:
Huakun Shen 2025-02-23 07:13:56 -05:00
parent 82ade0dcd9
commit 56452822e1
No known key found for this signature in database
2 changed files with 37 additions and 1 deletions

36
.github/workflows/npm-publish.yml vendored Normal file
View File

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

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-uuid",
"version": "0.0.8",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"kunkun": {