Skip to content

Commit 3ad996e

Browse files
committed
Update release.yml to enable debugging.
1 parent 54384df commit 3ad996e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)