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 07c235798e394d388686ed9ed06cf364d1568c78 Author: chaokunyang <[email protected]> AuthorDate: Thu Aug 14 19:40:22 2025 +0800 fix release python --- .github/workflows/release.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 25cbba768..4ec420f88 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -78,6 +78,19 @@ jobs: yum install -y git sudo wget git config --global --add safe.directory /work + ls -alh /opt/python + PY_VERSION=${{ matrix.python-version }} + PY_VERSION=${PY_VERSION//./} + echo "PY_VERSION: $PY_VERSION" + 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]
