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
Some checks failed
Test Local Signing / test-local-signing (push) Failing after 10s
This commit is contained in:
parent
c1c352f30c
commit
24d51f2c40
@ -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 }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user