We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68666fa commit 8c6a787Copy full SHA for 8c6a787
2 files changed
.github/workflows/release.yml
@@ -27,7 +27,7 @@ jobs:
27
id: changesets
28
uses: changesets/action@v1
29
with:
30
- version: npx changeset version && npm install --package-lock-only
+ version: scripts/version.sh
31
publish: npx changeset publish
32
commit: "chore: prepare release"
33
title: "chore: prepare release"
scripts/version.sh
@@ -0,0 +1,5 @@
1
+#!/usr/bin/env bash
2
+set -euo pipefail
3
+# SEE https://github.com/changesets/changesets/issues/1139
4
+npx changeset version
5
+npm install --package-lock-only
0 commit comments