From 0bbc15502905d19c630d237b5e102bfb996bb098 Mon Sep 17 00:00:00 2001 From: Yunze Xu Date: Wed, 22 Nov 2023 12:04:22 +0800 Subject: [PATCH] Gather the macOS binaries when releasing (#355) --- 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 2f26d383..c6665948 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