Skip to content

Commit 46180b9

Browse files
authored
Fix changeset version command. (#101)
Apparently it's not run through a shell by default, so my `&&` was misinterpreted.
1 parent 032de6b commit 46180b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# package-lock.json file. So we also run `npm install`, which does this update.
3939
# This is a workaround until this is handled automatically by `changeset version`.
4040
# See https://github.com/changesets/changesets/issues/421.
41-
version: npx changeset version && npm install
41+
version: bash -c 'npx changeset version && npm install'
4242
publish: npx changeset publish
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)