File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
.github/actions/configure-keystore Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -141,16 +141,17 @@ runs:
141
141
# Fingerprint of cert from provisioning profile
142
142
TMP_PROFILE_PLIST="$RUNNER_TEMP/profile.plist"
143
143
security cms -D -i "$PROFILE_PATH" -o "$TMP_PROFILE_PLIST"
144
- PROFILE_FP=$(plutil -extract DeveloperCertificates.0 raw -o - profile.plist \
144
+
145
+ PROFILE_FP=$(plutil -extract DeveloperCertificates.0 raw -o - "$TMP_PROFILE_PLIST" \
145
146
| base64 -D \
146
147
| openssl x509 -inform DER -noout -fingerprint -sha1 | cut -d'=' -f2)
147
148
148
149
# Fingerprint of cert from .p12
149
150
P12_FP=$(openssl pkcs12 -in "$CERT_PATH" -nokeys -passin pass:"$CERT_PW" \
150
151
| openssl x509 -noout -fingerprint -sha1 | cut -d'=' -f2)
151
152
152
- echo "Profile fingerprint: $PROFILE_FP"
153
- echo "P12 fingerprint: $P12_FP"
153
+ echo "📄 Provisioning profile fingerprint: $PROFILE_FP"
154
+ echo "🔑 Imported .p12 fingerprint: $P12_FP"
154
155
155
156
if [[ "$PROFILE_FP" == "$P12_FP" ]]; then
156
157
echo "✅ Certificates match"
@@ -159,6 +160,7 @@ runs:
159
160
fi
160
161
161
162
163
+
162
164
### END DEBUGGING
163
165
164
166
You can’t perform that action at this time.
0 commit comments