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 bc180f8 commit 37afe70Copy full SHA for 37afe70
.github/workflows/build-ddev.yml
@@ -528,6 +528,18 @@ jobs:
528
binary=$(echo build/*/release/*/${{ env.APP_NAME }})
529
chmod +x "$binary"
530
echo "path=$binary" >> "$GITHUB_OUTPUT"
531
+
532
+ - name: Sign universal binary
533
+ run: >-
534
+ rcodesign sign -vv \
535
+ --pem-source /tmp/certificate-application.pem \
536
+ --pem-source /tmp/private-key-application.pem \
537
+ --code-signature-flags runtime \
538
+ "${{ steps.binary.outputs.path }}"
539
540
+ - name: Verify signature universal binary
541
542
+ codesign --verify --deep --strict --verbose=2 "${{ steps.binary.outputs.path }}"
543
544
- name: Build PKG
545
run: >-
0 commit comments