From 98720ad119a28ba17c808cd444f0fe8a9798d763 Mon Sep 17 00:00:00 2001 From: sinanisler Date: Mon, 22 Dec 2025 02:18:00 +0300 Subject: [PATCH] Remove NPM publish workflow from GitHub Actions --- .github/workflows/publish.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 015543b..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Publish to NPM - -on: - release: - types: [created] - workflow_dispatch: - -jobs: - publish: - runs-on: ubuntu-latest - permissions: - contents: read - id-token: write - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20.x' - registry-url: 'https://registry.npmjs.org' - - - name: Install dependencies - run: npm ci || npm install - - - name: Publish to NPM - run: npm publish --provenance --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}