From 251e9d051e556949b7243e6d0c4e9fca6f05b61c Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Thu, 14 May 2026 22:52:49 +0200 Subject: [PATCH] fix(ci): pass ANDROID_KEYSTORE_PASSWORD to deploy-apk-to-server step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The deploy-apk-to-server task depends on build-android which signs the APK — it needs the keystore password or the packageRelease Gradle task fails. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 068b2cb..e42adcb 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -103,6 +103,7 @@ jobs: env: SSH_USER: ${{ secrets.SSH_USER }} SSH_HOST: ${{ secrets.SSH_HOST }} + ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} run: nix develop --no-warn-dirty --command task deploy-apk-to-server - name: Generate build history