mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
fix forge build
This commit is contained in:
parent
00a3c21424
commit
16327a4a71
2 changed files with 72 additions and 0 deletions
11
.github/workflows/electron-build.yml
vendored
11
.github/workflows/electron-build.yml
vendored
|
|
@ -75,6 +75,17 @@ jobs:
|
|||
echo "=== Code Signing Check ==="
|
||||
codesign --verify --deep --strict --verbose=2 "$APP_PATH" || echo "App is not signed (this is OK if code signing secrets are not configured)"
|
||||
echo ""
|
||||
echo "=== _CodeSignature Check ==="
|
||||
if [ -d "$APP_PATH/Contents/_CodeSignature" ]; then
|
||||
echo "WARNING: _CodeSignature directory still exists!"
|
||||
ls -la "$APP_PATH/Contents/_CodeSignature" || true
|
||||
else
|
||||
echo "✓ No _CodeSignature directory (expected for unsigned app)"
|
||||
fi
|
||||
echo ""
|
||||
echo "=== Extended Attributes Check ==="
|
||||
xattr -l "$APP_PATH" | head -5 || echo "No extended attributes (or not on macOS)"
|
||||
echo ""
|
||||
echo "=== Gatekeeper Check ==="
|
||||
spctl --assess --type execute --verbose "$APP_PATH" || echo "Gatekeeper assessment failed (expected for unsigned apps)"
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue