Skip to content

Commit

Permalink
Fix publish act (#61)
Browse files Browse the repository at this point in the history
* Fix publish act

* Fix again:
  • Loading branch information
Geometrically authored May 28, 2023
1 parent 8ca4be5 commit ae3a358
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
run: pnpm install
- name: Build
run: pnpm build
- name: Publish package
run: pnpm publish --no-git-checks
- name: Set publishing config
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish package
run: pnpm publish --no-git-checks --access=public --tag latest

0 comments on commit ae3a358

Please sign in to comment.