From caa3bff6b0138dc79fc52a6be982eef1b25ea475 Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Mon, 16 Mar 2026 03:59:40 -0500 Subject: [PATCH] fix: escape colons in publish-zapstore script to fix GitLab CI YAML validation --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 752a19e1..715d2404 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -174,6 +174,6 @@ publish-zapstore: - APK_PATH="artifacts/Ditto-${CI_COMMIT_TAG}.apk" - VERSION="${CI_COMMIT_TAG#v}" - - 'sed -i "2i release_source: ./${APK_PATH}" zapstore.yaml' - - sed -i "2i version: ${VERSION}" zapstore.yaml + - sed -i "2i release_source:\ ./${APK_PATH}" zapstore.yaml + - sed -i "2i version:\ ${VERSION}" zapstore.yaml - zsp publish -y --skip-metadata --skip-preview zapstore.yaml