From aaad3ec6379f0dd0252135eb6bfe52746629c48b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 13 Jan 2026 15:50:06 +0000 Subject: [PATCH 1/2] Initial plan From 9fbb1c7973c15261afe7b664d40bf45e8fe346f2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 13 Jan 2026 15:52:31 +0000 Subject: [PATCH 2/2] Fix GitHub Actions workflow secrets syntax error - Wrap secrets.KEYSTORE_BASE64 references in ${{ }} expression syntax on lines 65 and 79 - This fixes the "Unrecognized named-value: 'secrets'" error Co-authored-by: R00S <1279537+R00S@users.noreply.github.com> --- .github/workflows/build-apk.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-apk.yml b/.github/workflows/build-apk.yml index 26f00b4a..b581f4aa 100644 --- a/.github/workflows/build-apk.yml +++ b/.github/workflows/build-apk.yml @@ -62,7 +62,7 @@ jobs: continue-on-error: true - name: Setup signing keystore - if: secrets.KEYSTORE_BASE64 != '' + if: ${{ secrets.KEYSTORE_BASE64 != '' }} run: | # Decode keystore from secret (persistent key for consistent signatures) echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > android/app/upload-keystore.jks @@ -76,7 +76,7 @@ jobs: EOF - name: Note about signing - if: secrets.KEYSTORE_BASE64 == '' + if: ${{ secrets.KEYSTORE_BASE64 == '' }} run: | echo "⚠️ No signing keystore configured - APK will be signed with debug key" echo "This is normal for forks. The APK will still work for testing."