mirror of
https://github.com/mattintech/AndroidTestApp.git
synced 2026-07-11 12:01:53 +00:00
Update android-release.yml
Fixing typo in the keystore name
This commit is contained in:
8
.github/workflows/android-release.yml
vendored
8
.github/workflows/android-release.yml
vendored
@@ -33,13 +33,13 @@ jobs:
|
|||||||
|
|
||||||
# Step 4: Decode and prepare the keystore
|
# Step 4: Decode and prepare the keystore
|
||||||
# IMPORTANT: You need to configure the following secrets in your GitHub repository:
|
# 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
|
# - KEYSTORE_PASSWORD: Password for the keystore
|
||||||
# - KEY_ALIAS: Alias of the key in the keystore
|
# - KEY_ALIAS: Alias of the key in the keystore
|
||||||
# - KEY_PASSWORD: Password for the key
|
# - KEY_PASSWORD: Password for the key
|
||||||
- name: Decode Keystore
|
- name: Decode Keystore
|
||||||
env:
|
env:
|
||||||
ANDROID_KEYSTORE: ${{ secrets.ANDROID_KEYSTORE }}
|
ANDROID_KEYSTORE: ${{ secrets. SIGNING_KEY }}
|
||||||
run: |
|
run: |
|
||||||
echo "$ANDROID_KEYSTORE" | base64 --decode > ${{ github.workspace }}/keystore.jks
|
echo "$ANDROID_KEYSTORE" | base64 --decode > ${{ github.workspace }}/keystore.jks
|
||||||
|
|
||||||
@@ -139,7 +139,7 @@ jobs:
|
|||||||
# Required Secrets Configuration:
|
# Required Secrets Configuration:
|
||||||
# Go to Settings > Secrets and variables > Actions in your GitHub repository and add:
|
# 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
|
# - 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)
|
# - 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
|
# - 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")
|
# - The alias you specified when creating the keystore (e.g., "your-alias")
|
||||||
#
|
#
|
||||||
# 4. KEY_PASSWORD
|
# 4. KEY_PASSWORD
|
||||||
# - The password for the specific key (often the same as keystore password)
|
# - The password for the specific key (often the same as keystore password)
|
||||||
|
|||||||
Reference in New Issue
Block a user