chore: improve npm publish workflow to check version before publishing

This commit is contained in:
Huakun Shen 2025-01-29 11:47:11 -05:00
parent 24e600111e
commit b26492146c
No known key found for this signature in database

View File

@ -29,20 +29,14 @@ jobs:
- uses: oven-sh/setup-bun@v2
- run: pnpm install
- run: pnpm 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
- name: Check if version is already published
run: |
PACKAGE_VERSION=$(node -p "require('./package.json').version")
npm view kunkun-ext-video-processing@$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}}