From 203b10d119e0f292e25130410de07c371d7b8dd7 Mon Sep 17 00:00:00 2001 From: aarongrider Date: Tue, 23 Feb 2021 11:13:41 -0800 Subject: [PATCH] Fix publish workflow --- .github/workflows/publish.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5eb2b50..5a61b43 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,21 +7,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v2 with: node-version: '12.x' registry-url: 'https://registry.npmjs.org' - run: yarn - # Publish to npm - run: yarn publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - # Setup .npmrc file to publish to GitHub Packages - uses: actions/setup-node@v1 with: registry-url: 'https://npm.pkg.github.com' - # Publish to GitHub Packages - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}