Skip to content

Commit 49afac9

Browse files
fix: bump lerna
1 parent 09eaeac commit 49afac9

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
git config user.name "${{ github.actor }}"
2626
git config user.email "${{ github.actor }}@users.noreply.github.com"
2727
28-
- name: "Setup npm"
28+
- name: "Setup npm for npmjs"
2929
run: |
30-
npm set @ponderingdemocritus:registry=https://npm.pkg.github.com/dojoengine
31-
npm set "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}"
30+
npm config set registry https://registry.npmjs.org/
31+
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
3232
3333
- name: Install Protobuf Compiler
3434
run: sudo apt-get install -y protobuf-compiler

lerna.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,11 @@
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"version": "1.0.0-alpha.11",
44
"packages": ["packages/*", "examples/*"],
5-
"npmClient": "pnpm"
5+
"npmClient": "pnpm",
6+
"command": {
7+
"publish": {
8+
"conventionalCommits": true,
9+
"yes": true
10+
}
11+
}
612
}

0 commit comments

Comments
 (0)