@@ -92,19 +92,72 @@ runs:
92
92
GOOGLE_SERVICES : ${{ inputs.google_services }}
93
93
PLAYSTORE_CREDS : ${{ inputs.playstore_creds }}
94
94
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
97
97
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}"
100
102
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
103
108
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"
108
161
109
162
# Build Android App Bundle for Play Store
110
163
- name : Build Release
0 commit comments