Skip to content

Commit 3ce0b89

Browse files
authored
Merge pull request #984 from per1234/wrap-pw
Wrap signing certificate password in single quotes to prevent corruption
2 parents 6e865aa + c53daac commit 3ce0b89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-go-nightly-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
-f pkcs12 \
141141
-A \
142142
-T /usr/bin/codesign \
143-
-P "${{ secrets.INSTALLER_CERT_MAC_PASSWORD }}"
143+
-P '${{ secrets.INSTALLER_CERT_MAC_PASSWORD }}'
144144
145145
security set-key-partition-list \
146146
-S apple-tool:,apple: \

.github/workflows/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
-f pkcs12 \
151151
-A \
152152
-T "/usr/bin/codesign" \
153-
-P "${{ secrets.INSTALLER_CERT_MAC_PASSWORD }}"
153+
-P '${{ secrets.INSTALLER_CERT_MAC_PASSWORD }}'
154154
155155
security set-key-partition-list \
156156
-S apple-tool:,apple: \

0 commit comments

Comments
 (0)