From 88b3c60c353e338085144fadcd753b6d15b2b5f6 Mon Sep 17 00:00:00 2001 From: Troy Kelly Date: Mon, 4 Jan 2021 21:24:55 +0000 Subject: [PATCH] Access Public --- .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 77dfc3b..10f257f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: yarn # Publish to npm - - run: yarn publish + - run: yarn publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # Setup .npmrc file to publish to GitHub Packages @@ -24,6 +24,6 @@ jobs: # Defaults to the user or organization that owns the workflow file scope: '@aperim' # Publish to GitHub Packages - - run: yarn publish + - run: yarn publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}