Skip to content

Commit

Permalink
fix(ci): fix docker release scripts (risingwavelabs#8977)
Browse files Browse the repository at this point in the history
  • Loading branch information
huangjw806 authored Apr 4, 2023
1 parent da1822c commit c617632
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip
unzip -q awscliv2.zip && ./aws/install && mv /usr/local/bin/aws /bin/aws

echo "--- Update risingwave release version"
toml set --toml-path Cargo.toml workspace.package.version ${BUILDKITE_TAG#*v}
if [[ -n "${BUILDKITE_TAG+x}" ]]; then
toml set --toml-path Cargo.toml workspace.package.version ${BUILDKITE_TAG#*v}
fi

echo "--- Build risingwave release binary"
cargo build -p risingwave_cmd_all --features "static-link static-log-level" --profile release
Expand Down

0 comments on commit c617632

Please sign in to comment.