mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-15 11:38:49 -07:00
Update desktop-build.yml
This commit is contained in:
parent
1d4b757e00
commit
6f8a1730f5
1 changed files with 26 additions and 2 deletions
28
.github/workflows/desktop-build.yml
vendored
28
.github/workflows/desktop-build.yml
vendored
|
|
@ -471,9 +471,33 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
if [[ -n "$MACOS_CERTIFICATE_NAME" ]]; then
|
if [[ -n "$MACOS_CERTIFICATE_NAME" ]]; then
|
||||||
security unlock-keychain -p "$MACOS_CI_KEYCHAIN_PWD" build.keychain
|
security unlock-keychain -p "$MACOS_CI_KEYCHAIN_PWD" build.keychain
|
||||||
/usr/bin/codesign --sign="$MACOS_CERTIFICATE_NAME" --entitlements=".ci/macos.entitlements" --options=runtime --force --deep --timestamp --verbose ${{steps.build.outputs.path}}
|
codesign --sign="$MACOS_CERTIFICATE_NAME" --entitlements=".ci/macos.entitlements" --options=runtime --force --deep --timestamp --verbose ${{steps.build.outputs.path}}
|
||||||
echo ""
|
|
||||||
|
echo "Inspect/Verify app signature"
|
||||||
codesign -dv --verbose=4 ${{steps.build.outputs.path}}
|
codesign -dv --verbose=4 ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign -dv --verbose=3 ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign -dv --verbose=2 ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign -dv --verbose=1 ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign -dv --verbose ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign --verify ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign --verify --deep ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
codesign --verify --deep --verbose ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
echo "Assess the application"
|
||||||
|
spctl --assess --type execute --verbose ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
echo "Checking Gatekeepr conformance of the app"
|
||||||
|
codesign --verify --deep --strict --verbose=2 ${{steps.build.outputs.path}}
|
||||||
|
|
||||||
|
echo "Checking Gatekeepr conformance of the app 2"
|
||||||
|
spctl -a -t exec -vv ${{steps.build.outputs.path}}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Notarize app bundle
|
- name: Notarize app bundle
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue