From 1bb22d6a3ad4bdba5fcc2077c808e6577d1ecab8 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 23 May 2026 23:22:53 -0500 Subject: [PATCH] fix(ci): replace corrupted UTF-8 chars in auto-release.yml Two U+FFFD replacement characters were introduced during merge, preventing Gitea from parsing the workflow for dispatch. Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) --- .mokogitea/workflows/auto-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.mokogitea/workflows/auto-release.yml b/.mokogitea/workflows/auto-release.yml index 46ce4b2..d002f4b 100644 --- a/.mokogitea/workflows/auto-release.yml +++ b/.mokogitea/workflows/auto-release.yml @@ -8,7 +8,7 @@ # REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/moko-platform # PATH: /templates/workflows/universal/auto-release.yml.template # VERSION: 05.00.00 -# BRIEF: Universal build & release � detects platform from manifest.xml +# BRIEF: Universal build & release - detects platform from manifest.xml # # +========================================================================+ # | UNIVERSAL BUILD & RELEASE PIPELINE | @@ -311,7 +311,7 @@ jobs: echo "- Missing update.txt" >> $GITHUB_STEP_SUMMARY ERRORS=$((ERRORS+1)) fi ;; - *) echo "- Generic platform � no manifest checks" >> $GITHUB_STEP_SUMMARY ;; + *) echo "- Generic platform - no manifest checks" >> $GITHUB_STEP_SUMMARY ;; esac echo "" >> $GITHUB_STEP_SUMMARY -- 2.52.0