Skip to content

Commit

Permalink
fix release publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
pinzon committed Nov 5, 2024
1 parent 809a83e commit 0423949
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
- name: Check out the code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
node-version: 20
registry-url: "https://registry.npmjs.org"

- name: Install dependencies
run: npm install

- name: Publish to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET }}
run: npm publish

0 comments on commit 0423949

Please sign in to comment.