From 8de42b3b24da55d84096dced4c2a5c463852272e Mon Sep 17 00:00:00 2001 From: mostafa Date: Sun, 21 Dec 2025 21:24:27 +0330 Subject: [PATCH] Remove deprecated npm-publish.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit update-database.yml handles all publishing with OIDC 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/npm-publish.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml deleted file mode 100644 index 620c8a4..0000000 --- a/.github/workflows/npm-publish.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This workflow publishes to npm when changes are pushed manually -# Note: The update-database.yml workflow handles automatic updates and publishing - -name: Publish to npm - -on: - push: - branches: - - master - paths-ignore: - - '.github/**' - - 'README.md' - -jobs: - publish: - runs-on: ubuntu-latest - # Skip if the commit was made by github-actions (to avoid duplicate publishes) - if: github.actor != 'github-actions[bot]' - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: '20' - registry-url: 'https://registry.npmjs.org' - - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}