Skip to content

Commit

Permalink
verify code signing
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielides committed Dec 2, 2024
1 parent c250def commit 5472fb8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 5472fb8

Please sign in to comment.