From 468e2a3092edd8f11cb84b057abadd14ae0656f7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 21:02:21 +0000 Subject: [PATCH] docs: add comment explaining single-line Python format Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com> --- .github/workflows/release_pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release_pipeline.yml b/.github/workflows/release_pipeline.yml index a0ca038..84e0110 100644 --- a/.github/workflows/release_pipeline.yml +++ b/.github/workflows/release_pipeline.yml @@ -104,6 +104,7 @@ jobs: if [ "${REF_NAME}" = "main" ]; then # Infer version from manifest when on main branch # Use Python library for cross-platform compatibility + # Note: Single-line format required for YAML 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'); print(ext_info.version) if ext_info else sys.exit(1)") if [ -z "${VERSION}" ]; then