X Tutup
Skip to content

Commit b080b04

Browse files
more workflow debugging...
1 parent bd5f958 commit b080b04

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/release-build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,12 @@ jobs:
160160
security import "$CERTIFICATE_PATH" -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
161161
security set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" -D "${BUILD_CERTIFICATE_COMMON_NAME}" $KEYCHAIN_PATH
162162
security list-keychain -d user -s $KEYCHAIN_PATH
163-
163+
164+
echo "Default Keychain:"
165+
security find-identity -p codesigning -v | grep -o ".*valid identities found"
166+
echo "Keychain:"
167+
security find-identity -p codesigning -v "$SIGNING_KEYCHAIN" | grep -o ".*valid identities found"
168+
164169
# apply provisioning profile
165170
echo "PP_PATH=$PP_PATH" >> $GITHUB_OUTPUT
166171
echo "KEYCHAIN_PATH=$KEYCHAIN_PATH" >> $GITHUB_OUTPUT
@@ -253,6 +258,11 @@ jobs:
253258
254259
security set-key-partition-list -S apple-tool:,apple:, -s -k $KEYCHAIN_PASSWORD -D "${BUILD_CERTIFICATE_COMMON_NAME}" -t private $KEYCHAIN_PATH
255260
261+
echo "Default Keychain:"
262+
security find-identity -p codesigning -v | grep -o ".*valid identities found"
263+
echo "Keychain:"
264+
security find-identity -p codesigning -v "$SIGNING_KEYCHAIN" | grep -o ".*valid identities found"
265+
256266
# apply provisioning profile
257267
echo "PP_PATH=$PP_PATH" >> $GITHUB_OUTPUT
258268
echo "KEYCHAIN_PATH=$KEYCHAIN_PATH" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)
X Tutup