mirror of
https://github.com/kunkunsh/kunkun-ext-ossinsight.git
synced 2025-04-04 09:26:42 +00:00
remove npm publish ci
This commit is contained in:
parent
50b8de4b88
commit
a0d8887312
46
.github/workflows/npm-publish.yml
vendored
46
.github/workflows/npm-publish.yml
vendored
@ -1,46 +0,0 @@
|
|||||||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
||||||
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
||||||
|
|
||||||
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: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 22
|
|
||||||
registry-url: https://registry.npmjs.org/
|
|
||||||
- uses: oven-sh/setup-bun@v2
|
|
||||||
- name: Test
|
|
||||||
run: |
|
|
||||||
bun install
|
|
||||||
bun run build
|
|
||||||
- run: |
|
|
||||||
PACKAGE_NAME=$(jq -r '.name' package.json)
|
|
||||||
PACKAGE_VERSION=$(jq -r '.version' package.json)
|
|
||||||
|
|
||||||
# Get the version from npm registry
|
|
||||||
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version)
|
|
||||||
|
|
||||||
# Compare versions
|
|
||||||
if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then
|
|
||||||
echo "Version $PACKAGE_VERSION already exists in the npm registry."
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..."
|
|
||||||
npm publish --provenance --access public
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
|
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kunkun/ext-ossinsight",
|
"name": "@kunkun/ext-ossinsight",
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"exports": "./mod.ts",
|
"exports": "./mod.ts",
|
||||||
"publish": {
|
"publish": {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"$schema": "https://schema.kunkun.sh",
|
"$schema": "https://schema.kunkun.sh",
|
||||||
"name": "kunkun-ext-ossinsight",
|
"name": "kunkun-ext-ossinsight",
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user