From 0cfedcb1c2a717ba5c1c78f55e0e878fc41b29e2 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Sat, 14 Oct 2023 12:43:32 -0400 Subject: [PATCH] fix(ci): make published package public --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ea1b395..4f3c465 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,6 +29,6 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: NODE_ENV=production npm ci - run: npm run build --if-present - - run: npm publish + - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}