From 5a4e09bfdd230044db109163ace193456fad101b Mon Sep 17 00:00:00 2001 From: jaaaaavier Date: Tue, 9 Jun 2026 14:30:11 +0200 Subject: [PATCH] fix: use npm publish instead of yarn publish in GitHub registry workflow yarn publish prompts for version confirmation interactively, causing the CI job to hang and fail silently. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/publish-github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-github.yml b/.github/workflows/publish-github.yml index c333cbb..d1a9258 100644 --- a/.github/workflows/publish-github.yml +++ b/.github/workflows/publish-github.yml @@ -30,6 +30,6 @@ jobs: run: yarn build - name: Publish to GitHub - run: yarn publish + run: npm publish --scope=@internxt --access public env: NODE_AUTH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}