Skip to content

Commit 15a609d

Browse files
authored
Use secret for CODESIGN_ID in CI workflow
Removed hardcoded CODESIGN_ID and replaced with secret.
1 parent 0790064 commit 15a609d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ jobs:
3131

3232
runs-on: ${{ matrix.os }}
3333

34-
env:
35-
CODESIGN_ID: Developer ID Application
36-
3734
steps:
3835
- uses: actions/checkout@v4
3936
with:
@@ -111,6 +108,7 @@ jobs:
111108
MAC_CERT_P12: ${{ secrets.MAC_CERT_P12 }}
112109
MAC_CERT_P12_PASSWORD: ${{ secrets.MAC_CERT_P12_PASSWORD }}
113110
MAC_KEYCHAIN_PASSWORD: ${{ secrets.MAC_KEYCHAIN_PASSWORD }}
111+
CODESIGN_ID: ${{ secrets.CODESIGN_ID }}
114112

115113
# Configure
116114
- name: Configure (Unix)

0 commit comments

Comments
 (0)