Skip to content

Commit 1c953d5

Browse files
committed
ci: fix publish script
1 parent 72e6185 commit 1c953d5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/CI.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676
- name: Lerna publish
7777
run: |
7878
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
79-
npx lerna publish from-package --no-verify-access --yes
79+
npm config set provenance true
80+
pnpm publish -r --access public
8081
env:
8182
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
8283
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,6 @@ Cargo.lock
168168
*.node
169169
lib
170170
artifacts
171+
packages/core/index.js
172+
packages/core/index.d.ts
173+
packages/core/index.js.map

0 commit comments

Comments
 (0)