From 7f27ee1b4e038a322dbfe8d3037bd41970690a20 Mon Sep 17 00:00:00 2001 From: SilverLABS Date: Sun, 5 Apr 2026 13:15:58 +0100 Subject: [PATCH] fix(ci): use base64 -i flag for macOS input file syntax Co-Authored-By: Claude Sonnet 4.6 --- codemagic.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codemagic.yaml b/codemagic.yaml index d762322..3f31ad0 100644 --- a/codemagic.yaml +++ b/codemagic.yaml @@ -69,7 +69,7 @@ workflows: -H "Authorization: token $GITEA_TOKEN" \ "$GITEA_API/repos/$GITEA_REPO/contents/altstore-source.json" \ | jq -r '.sha') - CONTENT=$(base64 altstore-source.json | tr -d '\n') + CONTENT=$(base64 -i altstore-source.json | tr -d '\n') curl -sf -X PUT "$GITEA_API/repos/$GITEA_REPO/contents/altstore-source.json" \ -H "Authorization: token $GITEA_TOKEN" \ -H "Content-Type: application/json" \