From 2b3ad2c9e417784ef4daad2a1fb4acb93b148138 Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Fri, 20 Jan 2023 20:12:26 -0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc59d9f181..901a78ef1b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,13 +14,12 @@ jobs: uses: actions/setup-node@v2 with: node-version: '16' + registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm install - name: Package run: ./build-package.sh - name: Upload - run: ./push-package.sh + run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - confirm: "y" - SKIP_TAG: "y"