File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,17 @@ jobs:
21
21
node-version : 18
22
22
- name : install pnpm
23
23
run : npm i pnpm@latest -g
24
- - name : Setup npmrc
25
- run : echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
26
24
- name : setup pnpm config
27
25
run : pnpm config set store-dir $PNPM_CACHE_FOLDER
28
26
- name : install dependencies
29
- run : pnpm install
27
+ run : pnpm install | grep -v "^npm notice"
30
28
- name : create and publish versions
31
29
uses : changesets/action@v1
32
30
with :
33
31
version : pnpm ci:version
34
32
commit : " chore: update versions"
35
33
title : " chore: update versions"
36
- publish : pnpm ci:publish --no-git-checks
34
+ publish : pnpm ci:publish | grep -v "^npm notice"
37
35
env :
38
36
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments