Skip to content

Commit

Permalink
fix(publish-release-candidate.yml): npm token (#35)
Browse files Browse the repository at this point in the history
Signed-off-by: A Coolman <153610820+ACoolmanTelicent@users.noreply.github.com>
  • Loading branch information
ACoolmanTelicent committed Mar 20, 2024
1 parent e3978dc commit 51ed1a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: 'telicent-oss'
env: ${{ secrets.NPM_REGISTRY_TOKEN }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
- name: Get node version
id: node
run: |
Expand All @@ -46,6 +47,5 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile

- run: yarn build
- run: npm publish --tag ${{ steps.tag-name.outputs.tag }} --access public --provenance

0 comments on commit 51ed1a4

Please sign in to comment.