Skip to content

Commit 7fa0b20

Browse files
[Chore]: fix Changeset version action (#206)
1 parent 1b66145 commit 7fa0b20

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: changesets/action@v1
4242
with:
4343
# Update the monorepo lockfile after versioning
44-
version: pnpm changeset version && pnpm install --lockfile-only --frozen-lockfile=false
44+
version: pnpm changeset:version
4545
# This expects you to have a script called release which does a build for your packages and calls changeset publish
4646
publish: pnpm release
4747
env:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"clean:packages": "pnpm run --filter './packages/**' -r clean",
1010
"build:packages:prod": "pnpm build:packages --sourceMap false",
1111
"watch:packages": "pnpm run --parallel --filter './packages/**' -r build -w",
12+
"changeset:version": "pnpm changeset version && pnpm install --lockfile-only --frozen-lockfile=false",
1213
"build": "pnpm run -r build",
1314
"ci:publish": "changeset publish && git push --follow-tags",
1415
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",

0 commit comments

Comments
 (0)