We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 762a09a commit b5ff85dCopy full SHA for b5ff85d
scripts/cargo-release-publish.sh
@@ -8,7 +8,11 @@ set -xe -o pipefail
8
# Check out this branch, creating it if it doesn't exist.
9
git checkout -B to-release
10
11
-cargo release publish --publish --execute --no-confirm --workspace "$@"
+# --execute: actually does the release
12
+# --no-verify: doesn't build before releasing (this is because cargo publish might pull in new
13
+# versions of dependencies, which might have regressions)
14
+# --no-confirm: don't ask for confirmation, since this is a non-interactive script
15
+cargo release publish --publish --execute --no-verify --no-confirm --workspace "$@"
16
17
git checkout -
18
git branch -D to-release
0 commit comments