From 1415b19d601ca3a6a38d0050eb59110be88429e2 Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Thu, 14 May 2026 06:36:31 +0500 Subject: [PATCH] fix: base64 decode in CI --- .gitea/workflows/build-apk.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-apk.yml b/.gitea/workflows/build-apk.yml index 93e4a0b..c7b3c7b 100644 --- a/.gitea/workflows/build-apk.yml +++ b/.gitea/workflows/build-apk.yml @@ -15,8 +15,8 @@ jobs: - name: Setup keystore and environment run: | - echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > app/key.jks - echo "${{ secrets.DOTENV_BASE64 }}" | base64 -d > .build/release/.env + echo "${{ secrets.KEYSTORE_BASE64 }}" | tr -d '\n' | base64 -d > app/key.jks + echo "${{ secrets.DOTENV_BASE64 }}" | tr -d '\n' | base64 -d > .build/release/.env - name: Build APK working-directory: .build/release