From 0e27232a23c34d74bf3730e7060f98e4410a5900 Mon Sep 17 00:00:00 2001 From: Trevor Reed Date: Tue, 27 Jan 2026 00:31:17 -0700 Subject: [PATCH] Increase npm publish log verbosity in workflow Adds the --loglevel verbose flag to the npm publish step in the GitHub Actions workflow to provide more detailed output during publishing. --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5e267e2..2ab0c4e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: with: node-version: "22" registry-url: "https://registry.npmjs.org" - + - name: Verify npm version run: npm --version @@ -74,4 +74,4 @@ jobs: git push --follow-tags - name: Publish to npm - run: npm publish --provenance --access public + run: npm publish --provenance --access public --loglevel verbose