This is an automated email from the ASF dual-hosted git repository. xyz pushed a commit to branch branch-3.4 in repository https://gitbox.apache.org/repos/asf/pulsar-client-cpp.git
commit 478d3c3d020c2759dbc9ee35287a3662aaf26d5a Author: Yunze Xu <[email protected]> AuthorDate: Wed Nov 22 12:04:22 2023 +0800 Gather the macOS binaries when releasing (#355) (cherry picked from commit 0bbc15502905d19c630d237b5e102bfb996bb098) --- build-support/stage-release.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-support/stage-release.sh b/build-support/stage-release.sh index 2f26d38..c666594 100755 --- a/build-support/stage-release.sh +++ b/build-support/stage-release.sh @@ -43,6 +43,11 @@ pushd "$DEST_PATH" tar cvzf x64-windows-static.tar.gz x64-windows-static tar cvzf x86-windows-static.tar.gz x86-windows-static rm -r x64-windows-static x86-windows-static +mv macos-arm64.zip macos-arm64 +mv macos-arm64/* . +mv macos-x86_64.zip macos-x86_64 +mv macos-x86_64/* . +rm -rf macos-x86_64/ macos-arm64/ popd # Sign all files
