This is an automated email from the ASF dual-hosted git repository.
yuxia pushed a commit to branch release-0.1
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
The following commit(s) were added to refs/heads/release-0.1 by this push:
new 37134a4 chore: fix
37134a4 is described below
commit 37134a466efb0435ab3db592cb52f97d276859a6
Author: luoyuxia <[email protected]>
AuthorDate: Tue Mar 3 19:10:30 2026 +0800
chore: fix
---
.github/workflows/release_python.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/release_python.yml
b/.github/workflows/release_python.yml
index 74ebacb..525708f 100644
--- a/.github/workflows/release_python.yml
+++ b/.github/workflows/release_python.yml
@@ -109,7 +109,7 @@ jobs:
*) echo "Unsupported arch $ARCH"; exit 1 ;;
esac
curl -sLO
"https://github.com/protocolbuffers/protobuf/releases/download/v27.1/${ZIP}"
- unzip -o "${ZIP}" -d /tmp/protoc_install
+ python3 -c "import zipfile;
zipfile.ZipFile('${ZIP}').extractall('/tmp/protoc_install')"
chmod +x /tmp/protoc_install/bin/protoc
rm -f "${ZIP}"
export PATH="/tmp/protoc_install/bin:$PATH"
@@ -131,7 +131,7 @@ jobs:
*) echo "Unsupported arch $ARCH"; exit 1 ;;
esac
curl -sLO
"https://github.com/protocolbuffers/protobuf/releases/download/v27.1/${ZIP}"
- unzip -o "${ZIP}" -d /tmp/protoc_install
+ python3 -c "import zipfile;
zipfile.ZipFile('${ZIP}').extractall('/tmp/protoc_install')"
chmod +x /tmp/protoc_install/bin/protoc
rm -f "${ZIP}"
export PATH="/tmp/protoc_install/bin:$PATH"
@@ -153,7 +153,7 @@ jobs:
*) echo "Unsupported arch $ARCH"; exit 1 ;;
esac
curl -sLO
"https://github.com/protocolbuffers/protobuf/releases/download/v27.1/${ZIP}"
- unzip -o "${ZIP}" -d /tmp/protoc_install
+ python3 -c "import zipfile;
zipfile.ZipFile('${ZIP}').extractall('/tmp/protoc_install')"
chmod +x /tmp/protoc_install/bin/protoc
rm -f "${ZIP}"
export PATH="/tmp/protoc_install/bin:$PATH"
@@ -175,7 +175,7 @@ jobs:
*) echo "Unsupported arch $ARCH"; exit 1 ;;
esac
curl -sLO
"https://github.com/protocolbuffers/protobuf/releases/download/v27.1/${ZIP}"
- unzip -o "${ZIP}" -d /tmp/protoc_install
+ python3 -c "import zipfile;
zipfile.ZipFile('${ZIP}').extractall('/tmp/protoc_install')"
chmod +x /tmp/protoc_install/bin/protoc
rm -f "${ZIP}"
export PATH="/tmp/protoc_install/bin:$PATH"