This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v0.12.0-rc1 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 5038614fb307b3f019e84765fc15e8795d7bfce5 Author: chaokunyang <[email protected]> AuthorDate: Thu Aug 14 19:40:22 2025 +0800 fix release python --- .github/workflows/release.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 25cbba768..b85f55529 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -78,6 +78,17 @@ jobs: yum install -y git sudo wget git config --global --add safe.directory /work + ls -alh /opt/python + PY_VERSION=$(echo '${{ matrix.python-version }}' | sed 's/[^0-9]//g') + ls /opt/python/cp${PY_VERSION}-cp${PY_VERSION} + ls /opt/python/cp${PY_VERSION}-cp${PY_VERSION}/bin + + export PATH=/opt/python/cp${PY_VERSION}-cp${PY_VERSION}/bin:$PATH + echo "PATH: $PATH" + + echo "Using Python from: $(which python)" + echo "Python version: $(python -V)" + # Install Bazel inside the container bash ci/run_ci.sh install_bazel --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
