Skip to content

Commit

Permalink
chore: fix publishing to npm in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
umut-sahin authored and Specy committed Sep 29, 2024
1 parent 9f241e2 commit 479451b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,13 @@ jobs:
with:
node-version: '20'

- name: Cd in to the node bindings
run: cd bindings/typescript

- name: Install Dependencies
run: npm install
run: cd bindings/typescript && npm install

- name: Build
run: npm run build
run: cd bindings/typescript && npm run build

- name: Publish
run: npm publish
run: cd bindings/typescript && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 479451b

Please sign in to comment.