Skip to content

Commit ca2d21b

Browse files
committed
feat: Added workflow to promote Android app to production
This commit introduces a new workflow to promote the Android application to the Play Store Production track using Fastlane. The workflow is triggered manually and runs on macOS. It sets up Ruby, installs Fastlane and necessary plugins, and then executes the `promote_to_production` lane.
1 parent 7bd6c8c commit ca2d21b

File tree

2 files changed

+64
-11
lines changed

2 files changed

+64
-11
lines changed

.github/actions/android-beta/action.yaml

+63-10
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,72 @@ runs:
9292
GOOGLE_SERVICES: ${{ inputs.google_services }}
9393
PLAYSTORE_CREDS: ${{ inputs.playstore_creds }}
9494
run: |
95-
# Mock debug google-services.json
96-
cp .github/mock-google-services.json ${{ inputs.android_package_name }}/google-services.json
95+
# Enable verbose output and exit on first error
96+
set -ex
9797
98-
# Inflate keystore
99-
echo $KEYSTORE | base64 --decode > ${{ inputs.android_package_name }}/release_keystore.keystore
98+
# Debug: Print lengths of input secrets
99+
echo "Keystore input length: ${#KEYSTORE}"
100+
echo "Google Services input length: ${#GOOGLE_SERVICES}"
101+
echo "PlayStore Credentials input length: ${#PLAYSTORE_CREDS}"
100102
101-
# Inflate google-services.json
102-
echo $GOOGLE_SERVICES > ${{ inputs.android_package_name }}/google-services.json
103+
# Keystore decoding with error handling
104+
if [ -z "$KEYSTORE" ]; then
105+
echo "ERROR: Keystore file is empty"
106+
exit 1
107+
fi
103108
104-
# Inflate PlayStore credentials
105-
touch ${{ inputs.android_package_name }}/playStorePublishServiceCredentialsFile.json
106-
echo $PLAYSTORE_CREDS > ${{ inputs.android_package_name }}/playStorePublishServiceCredentialsFile.json
107-
109+
echo "$KEYSTORE" | base64 --decode > ${{ inputs.android_package_name }}/release_keystore.keystore
110+
if [ $? -ne 0 ]; then
111+
echo "ERROR: Failed to decode keystore"
112+
exit 1
113+
fi
114+
115+
# Verify keystore file was created
116+
if [ ! -f "${{ inputs.android_package_name }}/release_keystore.keystore" ]; then
117+
echo "ERROR: Keystore file was not created"
118+
exit 1
119+
fi
120+
ls -l ${{ inputs.android_package_name }}/release_keystore.keystore
121+
122+
# Google Services file handling
123+
if [ -z "$GOOGLE_SERVICES" ]; then
124+
echo "ERROR: Google Services JSON is empty"
125+
exit 1
126+
fi
127+
128+
echo "$GOOGLE_SERVICES" > ${{ inputs.android_package_name }}/google-services.json
129+
if [ $? -ne 0 ]; then
130+
echo "ERROR: Failed to create google-services.json"
131+
exit 1
132+
fi
133+
134+
# Verify google-services.json
135+
if [ ! -f "${{ inputs.android_package_name }}/google-services.json" ]; then
136+
echo "ERROR: Google Services file was not created"
137+
exit 1
138+
fi
139+
cat ${{ inputs.android_package_name }}/google-services.json
140+
141+
# PlayStore Credentials handling
142+
if [ -z "$PLAYSTORE_CREDS" ]; then
143+
echo "ERROR: PlayStore credentials are empty"
144+
exit 1
145+
fi
146+
147+
echo "$PLAYSTORE_CREDS" > ${{ inputs.android_package_name }}/playStorePublishServiceCredentialsFile.json
148+
if [ $? -ne 0 ]; then
149+
echo "ERROR: Failed to create PlayStore credentials file"
150+
exit 1
151+
fi
152+
153+
# Verify credentials file
154+
if [ ! -f "${{ inputs.android_package_name }}/playStorePublishServiceCredentialsFile.json" ]; then
155+
echo "ERROR: PlayStore credentials file was not created"
156+
exit 1
157+
fi
158+
159+
# Additional validation
160+
echo "Secret inflation completed successfully"
108161
109162
# Build Android App Bundle for Play Store
110163
- name: Build Release

.github/workflows/android-promote-production.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
uses: ./.github/actions/android-production
1717
with:
1818
android_package_name: 'mifospay-android'
19-
playstore_creds: ${{ secrets.PLAYSTORE_CREDS }}
19+
playstore_creds: ${{ secrets.PLAYSTORECREDS }}

0 commit comments

Comments
 (0)