Skip to content

Commit

Permalink
ci: attempt to fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
DawidWraga committed Mar 24, 2024
1 parent 0e024f7 commit 9bbcb18
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Install Dependencies
run: pnpm i
run: |
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
pnpm i
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down

0 comments on commit 9bbcb18

Please sign in to comment.