fix(workflows): improve app bundle verification and logging in local signing workflow
Some checks failed
Test Local Signing / test-local-signing (push) Failing after 10s

This commit is contained in:
Ozgur 2025-04-14 14:24:08 +02:00
parent c1c352f30c
commit 24d51f2c40
No known key found for this signature in database
GPG Key ID: 66CDF27505A35546

View File

@ -76,13 +76,22 @@ jobs:
EOF
echo "✅ Created test app bundle"
echo "APP_PATH=$(pwd)/$TEST_APP_DIR" >> "$GITHUB_ENV"
echo "APP_PATH=$TEST_APP_DIR" >> "$GITHUB_ENV"
# Verify app bundle exists
if [ ! -d "$TEST_APP_DIR" ]; then
echo "❌ Error: App bundle not found at $TEST_APP_DIR"
exit 1
fi
echo "🔍 App bundle contents:"
ls -la "$TEST_APP_DIR"
shell: bash
- name: Sign and Notarize App
uses: lando/code-sign-action@v3
with:
file: ${{ env.APP_PATH }}
file: TestApp.app
certificate-data: ${{ secrets.MACOS_CERTIFICATE }}
certificate-password: ${{ secrets.MACOS_CERTIFICATE_PWD }}
apple-team-id: ${{ secrets.APPLE_TEAM_ID }}