From 4de86a10ff9cb611104857cae4ca0c3bea1605c6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 21:01:03 +0000 Subject: [PATCH] fix: resolve YAML syntax error in release_pipeline.yml Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com> --- .github/workflows/release_pipeline.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/release_pipeline.yml b/.github/workflows/release_pipeline.yml index 3c9041b..a0ca038 100644 --- a/.github/workflows/release_pipeline.yml +++ b/.github/workflows/release_pipeline.yml @@ -104,16 +104,7 @@ jobs: if [ "${REF_NAME}" = "main" ]; then # Infer version from manifest when on main branch # Use Python library for cross-platform compatibility - VERSION=$(python3 -c " -import sys -sys.path.insert(0, '${GITHUB_WORKSPACE}/scripts/lib') -import extension_utils -ext_info = extension_utils.get_extension_info('${GITHUB_WORKSPACE}/src') -if ext_info: - print(ext_info.version) -else: - sys.exit(1) - ") + VERSION=$(python3 -c "import sys; sys.path.insert(0, '${GITHUB_WORKSPACE}/scripts/lib'); import extension_utils; ext_info = extension_utils.get_extension_info('${GITHUB_WORKSPACE}/src'); print(ext_info.version) if ext_info else sys.exit(1)") if [ -z "${VERSION}" ]; then echo "ERROR: Failed to extract version from manifest" >> "${GITHUB_STEP_SUMMARY}"