Skip to content

Commit

Permalink
Stage release
Browse files Browse the repository at this point in the history
  • Loading branch information
tinrab committed Nov 17, 2023
1 parent f85e163 commit 38f05d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions develop.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -euo pipefail
set -eo pipefail
current_path="$(realpath $0)"
current_dir="$(dirname $current_path)"

Expand Down Expand Up @@ -51,19 +51,21 @@ function test() {
}

function publish() {
if [[ $2 =~ ^(--actually-do-it)$ ]]; then
if [[ "$2" =~ ^(--actually-do-it)$ ]]; then
cargo publish -p bomboni_common
cargo publish -p bomboni_prost
cargo publish -p bomboni_proto
cargo publish -p bomboni_derive
cargo publish -p bomboni_request
cargo publish -p bomboni_template
cargo publish -p bomboni
else
cargo publish -p bomboni_common --dry-run --allow-dirty
cargo publish -p bomboni_prost --dry-run --allow-dirty
cargo publish -p bomboni_proto --dry-run --allow-dirty
cargo publish -p bomboni_derive --dry-run --allow-dirty
cargo publish -p bomboni_request --dry-run --allow-dirty
cargo publish -p bomboni_template --dry-run --allow-dirty
cargo publish -p bomboni --dry-run --allow-dirty
fi
}
Expand Down

0 comments on commit 38f05d6

Please sign in to comment.