From deff0d33af36039ca544c1dce74d9a1bf31272d2 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 27 Nov 2023 13:52:10 -0800 Subject: [PATCH] Increase verbosity of npm publish from CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c43d1e..051d200 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: fi - name: Publish to npm if: github.ref == 'refs/heads/main' || github.ref_type == 'tag' && startsWith(github.ref_name, 'v') - run: npm publish ${TAG} + run: npm publish --verbose ${TAG} env: TAG: ${{ github.ref == 'refs/heads/main' && '--tag=main' || ((contains(github.ref_name, '-rc.') && '--tag=dev') || '' )}} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}