From f062c0e2b8964c4825595c040fcc5c8ce89f4e36 Mon Sep 17 00:00:00 2001 From: Vitor Buzinaro Date: Mon, 23 Mar 2020 10:17:26 -0300 Subject: [PATCH] fix(.github/workflows/npmpublish): use --access public Since it's an organization package (`@closeio/(...)`), we must deliberately tell npm that this is a public package. --- .github/workflows/npmpublish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index f1f33b1..1eebc21 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -25,6 +25,6 @@ jobs: node-version: 12 registry-url: https://registry.npmjs.org/ - run: yarn - - run: npm publish + - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}