Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Commit d596da5

Browse files
committed
fix: don't version without release
1 parent 4526ace commit d596da5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,5 @@ jobs:
7575
github.ref == 'refs/heads/master' &&
7676
!contains(github.event.head_commit.message, 'chore(release)')
7777
run: |
78-
yarn version:ci --yes
7978
yarn release:check
8079
yarn release:latest --yes --no-verify-access

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818
"precover": "rimraf coverage",
1919
"cover": "jest --coverage",
2020
"commit": "git-cz",
21-
"version:ci": "lerna version --yes --conventional-commits --create-release github --message 'chore(release): publish [ci skip]'",
2221
"release:check": "lerna changed",
23-
"release:latest": "lerna publish",
22+
"release:latest": "lerna publish --yes --conventional-commits --create-release github --message 'chore(release): publish [ci skip]'",
2423
"release:canary": "lerna publish --canary"
2524
},
2625
"workspaces": [

0 commit comments

Comments
 (0)