From 273a926f03db19aa1f13d6f86b646cb7b3a437cd Mon Sep 17 00:00:00 2001 From: Developer Date: Tue, 7 Apr 2026 17:21:33 -0700 Subject: [PATCH] Fix YAML parse error: use block scalar for echo with colons Gitea's YAML parser treats `echo "text: value"` as a mapping when on a single `run:` line. Using block scalar (`run: |`) avoids this. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build-app-linux.yml | 3 ++- .gitea/workflows/build-app-macos.yml | 3 ++- .gitea/workflows/build-sidecar-cloud.yml | 6 ++++-- .gitea/workflows/build-sidecar-linux.yml | 3 ++- .gitea/workflows/build-sidecar-macos.yml | 3 ++- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-app-linux.yml b/.gitea/workflows/build-app-linux.yml index ce975eb..88376f9 100644 --- a/.gitea/workflows/build-app-linux.yml +++ b/.gitea/workflows/build-app-linux.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-app-macos.yml b/.gitea/workflows/build-app-macos.yml index 717925e..c5d2a25 100644 --- a/.gitea/workflows/build-app-macos.yml +++ b/.gitea/workflows/build-app-macos.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-sidecar-cloud.yml b/.gitea/workflows/build-sidecar-cloud.yml index 1015219..c6277a5 100644 --- a/.gitea/workflows/build-sidecar-cloud.yml +++ b/.gitea/workflows/build-sidecar-cloud.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building cloud sidecar for tag ${RELEASE_TAG}" + run: | + echo "Building cloud sidecar for tag ${RELEASE_TAG}" - uses: actions/checkout@v4 with: @@ -164,7 +165,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building cloud sidecar for tag ${RELEASE_TAG}" + run: | + echo "Building cloud sidecar for tag ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-sidecar-linux.yml b/.gitea/workflows/build-sidecar-linux.yml index 2853d99..2e48666 100644 --- a/.gitea/workflows/build-sidecar-linux.yml +++ b/.gitea/workflows/build-sidecar-linux.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-sidecar-macos.yml b/.gitea/workflows/build-sidecar-macos.yml index b3a7340..73e41b4 100644 --- a/.gitea/workflows/build-sidecar-macos.yml +++ b/.gitea/workflows/build-sidecar-macos.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: