mirror of
https://github.com/kunkunsh/kunkun-ext-video-processing.git
synced 2025-04-04 10:16:45 +00:00
chore: improve npm publish workflow to check version before publishing
This commit is contained in:
parent
24e600111e
commit
b26492146c
24
.github/workflows/npm-publish.yml
vendored
24
.github/workflows/npm-publish.yml
vendored
@ -29,20 +29,14 @@ jobs:
|
|||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
- run: pnpm install
|
- run: pnpm install
|
||||||
- run: pnpm build
|
- run: pnpm build
|
||||||
- run: |
|
- name: Check if version is already published
|
||||||
PACKAGE_NAME=$(jq -r '.name' package.json)
|
run: |
|
||||||
PACKAGE_VERSION=$(jq -r '.version' package.json)
|
PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
||||||
|
npm view kunkun-ext-video-processing@$PACKAGE_VERSION
|
||||||
# Get the version from npm registry
|
continue-on-error: true
|
||||||
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version)
|
id: check_version
|
||||||
|
- name: Publish
|
||||||
# Compare versions
|
if: steps.check_version.outcome != 'success'
|
||||||
if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then
|
run: npm publish --provenance --access public
|
||||||
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