This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v0.12.1-a6 in repository https://gitbox.apache.org/repos/asf/fory.git
commit f8dddd1a00fab2a059bc017bdceb6b5ffb3fe549 Author: chaokunyang <[email protected]> AuthorDate: Wed Aug 27 13:24:22 2025 +0800 fix bump version --- ci/deploy.sh | 2 +- ci/tasks/python_container_build_script.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/deploy.sh b/ci/deploy.sh index 007ccb8a5..be0c38595 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -60,7 +60,7 @@ parse_py_version() { version="${version//-alpha/a}" version="${version//-beta/b}" version="${version//-rc/rc}" - version="${version//-//}" + version="${version//-/}" echo "$version" } diff --git a/ci/tasks/python_container_build_script.sh b/ci/tasks/python_container_build_script.sh index da4032d6e..6ba1f7d80 100644 --- a/ci/tasks/python_container_build_script.sh +++ b/ci/tasks/python_container_build_script.sh @@ -34,7 +34,7 @@ verify_version() { if [ -n "$GITHUB_REF_NAME" ]; then # Strip leading 'v' if present and capture only the actual output, not debug messages local expected_version - expected_version="$(DEPLOY_QUIET=1 ci/deploy.sh parse_py_version $GITHUB_REF_NAME)" + expected_version="$(DEPLOY_QUIET=1 ci/deploy.sh parse_py_version $GITHUB_REF_NAME | tail -n1)" echo "Expected version: $expected_version" if [ "$installed_version" != "$expected_version" ]; then --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
