From b2db0a2f22050a9b49d824d0c213f3afccb60495 Mon Sep 17 00:00:00 2001 From: Jonathan Fuchs <21195+jfuchs@users.noreply.github.com> Date: Wed, 20 Jul 2022 11:37:08 -0700 Subject: [PATCH] Update publish.yml pairing with @theinterned on our publish action --- .github/workflows/publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c1b229d..5239060 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,17 +1,17 @@ name: Publish - on: release: types: [created] - jobs: publish-npm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - name: Checkout the project + uses: actions/checkout@v3 + - name: Use Node.js 16.x (LTS) + uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16.x registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci @@ -19,6 +19,6 @@ jobs: - run: npm version ${TAG_NAME} --git-tag-version=false env: TAG_NAME: ${{ github.event.release.tag_name }} - - run: npm whoami; npm --ignore-scripts publish + - run: npm whoami; npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}