mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-03 17:36:41 +00:00
feat: Add GitHub Actions workflow for NPM package publishing
This commit is contained in:
parent
65baa6d367
commit
1325c12b2b
35
.github/workflows/kk-ext-publish.yml
vendored
Normal file
35
.github/workflows/kk-ext-publish.yml
vendored
Normal 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}}
|
Loading…
x
Reference in New Issue
Block a user