We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25167af commit 10fc21fCopy full SHA for 10fc21f
1 file changed
.github/workflows/publish-packages.yml
@@ -108,13 +108,17 @@ jobs:
108
- name: Set up pnpm
109
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
110
111
- - name: Setup Node.js
+ - name: Set up Node.js
112
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
113
with:
114
# Don't use caching here as we never install dependencies in this workflow
115
node-version-file: '.nvmrc'
116
registry-url: 'https://registry.npmjs.org'
117
118
+ - name: Setup npm
119
+ # OIDC requires npm >=11.5.1. pnpm will use the installed version of npm for publishing
120
+ run: npm install -g npm@11
121
+
122
- name: Publish
123
working-directory: packages/${{ matrix.package }}
124
run: |
0 commit comments