Skip to content

Commit

Permalink
ci: fix npm token
Browse files Browse the repository at this point in the history
  • Loading branch information
EdouardDem committed Nov 20, 2023
1 parent 10d3c0e commit e4088ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
git config --global user.email "tractr-bot@tractr.net"
git config --global user.name "tractr-bot"
- name: Use Node.js 18.x
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm install
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build
- run: npm run lerna version
- run: npm run lerna publish from-package
- run: npm run lerna publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit e4088ef

Please sign in to comment.