mirror of
https://github.com/jonasrafa/kunkun-ext-fancy-text.git
synced 2025-04-04 10:16:43 +00:00
Simplify npm publish workflow
This commit is contained in:
parent
67325741ad
commit
ba486b5c15
23
.github/workflows/npm-publish.yml
vendored
23
.github/workflows/npm-publish.yml
vendored
@ -1,10 +1,6 @@
|
|||||||
name: NPM Package Publish
|
name: NPM Package Publish
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
release:
|
|
||||||
types: [created]
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -16,24 +12,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
with:
|
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
- run: bun install
|
- run: bun install
|
||||||
- run: bun run build
|
- run: bun run build
|
||||||
- run: |
|
- name: Publish to NPM
|
||||||
PACKAGE_NAME=$(jq -r '.name' package.json)
|
run: npm publish --provenance --access public
|
||||||
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:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user