File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 9292 env :
9393 MAC_CERT_P12 : ${{ secrets.MAC_CERT_P12 }}
9494 MAC_CERT_P12_PASSWORD : ${{ secrets.MAC_CERT_P12_PASSWORD }}
95+ MAC_CERT_NAME : ${{ secrets.MAC_CERT_NAME }}
9596 run : |
9697 echo "Length of MAC_CERT_P12 is ${#MAC_CERT_P12}"
9798 echo "MAC_CERT_P12_PASSWORD is set: ${MAC_CERT_P12_PASSWORD:+yes}"
@@ -104,7 +105,7 @@ jobs:
104105 security unlock-keychain -p "" build.keychain
105106 - name : Sign App
106107 run : |
107- codesign --deep --force --options runtime --sign "Developer ID Application: Cloonar Technologies GmbH " SoundscapeSync.app
108+ codesign --deep --force --options runtime --sign "$MAC_CERT_NAME " SoundscapeSync.app
108109 - name : Verify signature
109110 run : codesign --verify --deep --strict --verbose=2 SoundscapeSync.app
110111 - name : Zip macOS build
Original file line number Diff line number Diff line change 8383 env :
8484 MAC_CERT_P12 : ${{ secrets.MAC_CERT_P12 }}
8585 MAC_CERT_P12_PASSWORD : ${{ secrets.MAC_CERT_P12_PASSWORD }}
86+ MAC_CERT_NAME : ${{ secrets.MAC_CERT_NAME }}
8687 run : |
8788 mkdir -p ~/certs
8889 echo "$MAC_CERT_P12" | base64 --decode > ~/certs/mac_dev_cert.p12
9394 security unlock-keychain -p "" build.keychain
9495 - name : Sign App
9596 run : |
96- codesign --deep --force --options runtime --sign "Developer ID Application: Cloonar Technologies GmbH " SoundscapeSync.app
97+ codesign --deep --force --options runtime --sign "$MAC_CERT_NAME " SoundscapeSync.app
9798 - name : Verify signature
9899 run : codesign --verify --deep --strict --verbose=2 SoundscapeSync.app
99100 - name : Zip macOS build
You can’t perform that action at this time.
0 commit comments