mirror of
https://github.com/kunkunsh/kunkun-ext-video-processing.git
synced 2025-04-03 18:06:43 +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
|
||||
- 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}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user