We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50ca0c2 commit feda6acCopy full SHA for feda6ac
.github/workflows/macos-dmg.yml
@@ -304,6 +304,14 @@ jobs:
304
echo 'self-contained app:' || true
305
ls -R 'dist/SSH Studio.app/Contents' || true
306
307
+ - name: Ad-hoc codesign app bundle
308
+ run: |
309
+ set -euxo pipefail
310
+ APP="dist/SSH Studio.app"
311
+ # Deep ad-hoc sign the app and embedded content to improve launch reliability
312
+ codesign --force --deep --sign - --timestamp=none "$APP"
313
+ codesign --verify --deep --verbose=2 "$APP" || (codesign --display --verbose=5 "$APP"; exit 1)
314
+
315
316
- name: Create DMG
317
run: |
0 commit comments