From eac7cb8564c2c0279e691153df37e21a0dd8cf14 Mon Sep 17 00:00:00 2001 From: Prateek Date: Sat, 21 Feb 2026 04:29:50 +0530 Subject: [PATCH] chore: disable automatic release workflow until NPM_TOKEN is configured The release workflow fails on every push to main because there's no NPM_TOKEN secret configured. Switch to manual trigger (workflow_dispatch) until npm publishing credentials are set up. Re-enable by uncommenting the push trigger and adding NPM_TOKEN secret. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4532d771b..a34907189 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,9 @@ name: Release on: - push: - branches: [main] + workflow_dispatch: # Manual trigger only until NPM_TOKEN is configured + # push: + # branches: [main] concurrency: group: ${{ github.workflow }}-${{ github.ref }}