From 5472fb8ce55c7ba35f8d28dba32eb82c2cc65625 Mon Sep 17 00:00:00 2001 From: Odysseas Gabrielides Date: Mon, 2 Dec 2024 23:17:09 +0200 Subject: [PATCH] verify code signing --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62328e23..d2f146f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -188,6 +188,12 @@ jobs: if: contains(matrix.target, 'apple-darwin') run: codesign --timestamp --sign "$CODE_SIGN_IDENTITY" dist/dash-evo-tool-${{ matrix.platform }}.${{ matrix.release-ext }} + - name: Verify Code Signing + if: contains(matrix.target, 'apple-darwin') + run: | + codesign --verify --deep --strict --verbose=2 dash-evo-tool/dash-evo-tool${{ matrix.ext }} + codesign --verify --deep --strict --verbose=2 dist/dash-evo-tool-${{ matrix.platform }}.${{ matrix.release-ext }} + # Notarize MacOS Release Build using xcrun notarytool - name: Notarize MacOS Release Build if: contains(matrix.target, 'apple-darwin')