update full release script

This commit is contained in:
Carson McManus 2022-06-25 11:24:26 -04:00
parent 9d1f2a7ee7
commit f9385ac78e

View file

@ -52,9 +52,10 @@ if [[ $DRY_RUN == false ]]; then
fi fi
if [[ $BUMP != "" ]]; then if [[ $BUMP != "" ]]; then
params+=(--bump "$BUMP") params+=(--bump "$BUMP")
params+=(--bump-dependencies "$BUMP")
fi fi
if [[ $SKIP_CRATE_PUBLISH == true ]]; then if [[ $SKIP_CRATE_PUBLISH == true ]]; then
params+=(--skip-publish) params+=(--no-publish)
fi fi
cargo smart-release --update-crates-index --no-changelog "${params[@]}" cargo smart-release --update-crates-index --no-changelog "${params[@]}"