Skip to content

Commit

Permalink
fix: missing auth token for release (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
thucpn authored Feb 24, 2025
1 parent c538a5c commit 18e9247
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
- name: Install dependencies
run: yarn --immutable

- name: Add auth token to .npmrc file
run: |
cat << EOF >> ".npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Get changeset status
id: get-changeset-status
run: |
Expand Down

0 comments on commit 18e9247

Please sign in to comment.