File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,19 @@ jobs:
3939 CERTIFICATE_PASSWORD : ${{ secrets.CERTIFICATE_PASSWORD }}
4040 run : |
4141 echo "$SIGNING_CERTIFICATE" | base64 --decode > certificate.p12
42- # Import certificate into the login keychain explicitly
4342 security import certificate.p12 -k ~/Library/Keychains/login.keychain -P "$CERTIFICATE_PASSWORD" -T /usr/bin/codesign
4443
4544 - name : Code Sign Application
4645 if : matrix.os == 'macos-latest'
4746 run : |
47+ set -x
4848 codesign --sign "${{ secrets.SIGNING_IDENTITY }}" \
49- --deep --force --timestamp --options runtime \
49+ --deep \
50+ --force \
51+ --timestamp \
52+ --options runtime \
5053 --entitlements build/entitlements.mac.plist \
54+ --verbose \
5155 "dist/mac/DHIS2 Downloader.app"
5256
5357 - name : Verify Code Signature
You can’t perform that action at this time.
0 commit comments