diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b578fdd..29a8631 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,10 +1,6 @@ name: NPM Package Publish on: - push: - branches: [main] - release: - types: [created] workflow_dispatch: jobs: @@ -16,24 +12,9 @@ jobs: steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v2 - with: - registry-url: "https://registry.npmjs.org" - run: bun install - run: bun run 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: Publish to NPM + run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}