Skip to content

Commit

Permalink
Add debugging on finding apple cert
Browse files Browse the repository at this point in the history
  • Loading branch information
erskingardner committed Jan 7, 2025
1 parent 52f0844 commit 500ddb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ jobs:
if: matrix.platform == 'macos-latest'
id: verify_apple_certificate
run: |
CERT_INFO=$(security find-identity -v -p codesigning build.keychain | grep "Apple Development")
security find-identity -v -p codesigning build.keychain
CERT_INFO=$(security find-identity -v -p codesigning build.keychain | grep -E "Apple (Development|Distribution)")
CERT_ID=$(echo "$CERT_INFO" | awk -F'"' '{print $2}')
echo "cert_id=$CERT_ID" >> "$GITHUB_OUTPUT"
echo "Apple Developer Certificate imported."
Expand Down

0 comments on commit 500ddb4

Please sign in to comment.