From 953cc5b789de585a85f3c930bd3003994379d810 Mon Sep 17 00:00:00 2001 From: Maros Hluska Date: Fri, 28 Aug 2020 13:24:08 -0700 Subject: [PATCH] Remove GitHub packages publish --- .github/workflows/publish.yml | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 861e372..07aaade 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,21 +27,8 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: npm ci - - run: npm publish + - run: | + npm ci + npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} - - publish-gpr: - needs: build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 12 - registry-url: https://npm.pkg.github.com/ - - run: npm ci - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}