We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc09f7 commit 6d4210dCopy full SHA for 6d4210d
.github/workflows/changesets.yml
@@ -23,14 +23,16 @@ jobs:
23
scope: "@arizeai"
24
env:
25
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
26
- - name: install pnpm
27
- run: npm i pnpm@latest -g
28
- - name: Setup npmrc
29
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
+ - name: Setup PNPM
+ uses: pnpm/action-setup@v4
+ with:
+ version: 9.8.0
30
- name: setup pnpm config
31
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
32
- name: install dependencies
33
run: pnpm install
34
+ - name: Setup npmrc
35
+ run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
36
- name: create and publish versions
37
uses: changesets/action@v1
38
with:
0 commit comments