Skip to content

Commit

Permalink
(CDPE-6560) Use new npm access token for publish (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mckenna authored Mar 8, 2024
1 parent 042a5bf commit 5842d1e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,17 @@ jobs:
publish:
needs: test
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 12.4.0
registry-url: https://registry.npmjs.org
- name: Install all package dependencies
run: npm install
- name: Publish packages
run: npm run release
run: npm run publish

0 comments on commit 5842d1e

Please sign in to comment.