Skip to content

Commit

Permalink
revert: "ci: set auth token through env variable"
Browse files Browse the repository at this point in the history
This reverts commit 51e5a87.
  • Loading branch information
zkochan committed Oct 16, 2022
1 parent e767d60 commit 387cedd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -35,8 +35,10 @@ jobs:
run: pnpm install
- name: Publish Packages
env:
"npm_config_//registry.npmjs.org/:_authToken": ${{ secrets.NPM_TOKEN }}
run: pnpm release
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
pnpm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}"
pnpm release
- name: Copy Artifacts
run: pnpm run copy-artifacts
- name: Generate release description
Expand Down

0 comments on commit 387cedd

Please sign in to comment.