From ced7d030a051e8153e696d108b7eff74f7b1ef37 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Sat, 18 Jan 2025 02:59:52 -0500 Subject: [PATCH] ci: enhance npm publish workflow to check for existing package version before publishing --- .github/workflows/npm-publish.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 675fca2..9a7cc02 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -38,6 +38,20 @@ jobs: with: node-version: 22 registry-url: https://registry.npmjs.org/ - - run: npm publish --provenance --access public + - 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}}