Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/changesets_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ jobs:
- name: Promote next to latest
if: github.event.inputs.release_type == 'latest'
env:
# NPM_TOKEN is required because `npm dist-tag` does not support OIDC authentication.
# NODE_AUTH_TOKEN is required because `npm dist-tag` does not support OIDC authentication.
# See: https://github.com/npm/cli/issues/8547
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
PACKAGES=$(pnpm ls -r --depth -1 --json | jq -r '.[] | select(.private != true) | .name')
for NAME in $PACKAGES; do
Expand Down
Loading