From cba5f2a9c9e912ae7067754b9703d46bef2c8afc Mon Sep 17 00:00:00 2001 From: Matt Hills Date: Fri, 13 Jun 2025 17:35:57 -0400 Subject: [PATCH] Update android-release.yml Fixing typo in the keystore name --- .github/workflows/android-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android-release.yml b/.github/workflows/android-release.yml index 1f72f54..97d429f 100644 --- a/.github/workflows/android-release.yml +++ b/.github/workflows/android-release.yml @@ -33,13 +33,13 @@ jobs: # Step 4: Decode and prepare the keystore # IMPORTANT: You need to configure the following secrets in your GitHub repository: - # - ANDROID_KEYSTORE: Base64 encoded keystore file + # - SIGNING_KEY : Base64 encoded keystore file # - KEYSTORE_PASSWORD: Password for the keystore # - KEY_ALIAS: Alias of the key in the keystore # - KEY_PASSWORD: Password for the key - name: Decode Keystore env: - ANDROID_KEYSTORE: ${{ secrets.ANDROID_KEYSTORE }} + ANDROID_KEYSTORE: ${{ secrets. SIGNING_KEY }} run: | echo "$ANDROID_KEYSTORE" | base64 --decode > ${{ github.workspace }}/keystore.jks @@ -139,7 +139,7 @@ jobs: # Required Secrets Configuration: # Go to Settings > Secrets and variables > Actions in your GitHub repository and add: # -# 1. ANDROID_KEYSTORE +# 1. SIGNING_KEY # - Generate a keystore: keytool -genkey -v -keystore release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias your-alias # - Convert to base64: base64 -i release-key.jks | pbcopy (on macOS) or base64 release-key.jks | xclip (on Linux) # - Paste the base64 string as the secret value @@ -151,4 +151,4 @@ jobs: # - The alias you specified when creating the keystore (e.g., "your-alias") # # 4. KEY_PASSWORD -# - The password for the specific key (often the same as keystore password) \ No newline at end of file +# - The password for the specific key (often the same as keystore password)