Skip to content

Commit

Permalink
ci: fix secret
Browse files Browse the repository at this point in the history
  • Loading branch information
dalechyn committed Jan 14, 2024
1 parent b66ede5 commit fdc5bf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Authenticate to NPM
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> packages/cli/.npmrc
env:
NPM_ACCESS_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_ACCESS_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PAT }}

- name: Publish Beta to NPM
run: pnpm pub:beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ jobs:
publish: npx changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PAT }}
NODE_ENV: "production"

0 comments on commit fdc5bf4

Please sign in to comment.