Skip to content

Commit d154b18

Browse files
committed
fix signing docs
1 parent c5ebd04 commit d154b18

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

docs/packaging/signing.mdx

+2-12
Original file line numberDiff line numberDiff line change
@@ -291,25 +291,15 @@ The documentation here for Azure DevOps is provided by the community and is not
291291
- bash: security delete-keychain $AGENT_TEMPDIRECTORY/app-signing.keychain-db
292292
displayName: 🧹 Clean up keychain
293293
condition: always()
294-
Sign on mac (assuming a powershell script):
295-
# Add signing parameters
296-
if ($IsMacOS) {
297-
$vpkCommand += @(
298-
'--signAppIdentity','Developer ID Application: Andrew Arnott',
299-
'--signInstallIdentity','Developer ID Installer: Andrew Arnott',
300-
'--notaryProfile','velopack-profile',
301-
'--keychain','$(Agent.TempDirectory)/app-signing.keychain-db'
302-
)
303-
}
304294
```
305295

306296
Sign on mac (assuming a powershell script):
307297
```
308298
# Add signing parameters
309299
if ($IsMacOS) {
310300
$vpkCommand += @(
311-
'--signAppIdentity','Developer ID Application: Andrew Arnott',
312-
'--signInstallIdentity','Developer ID Installer: Andrew Arnott',
301+
'--signAppIdentity','Developer ID Application: Your Name',
302+
'--signInstallIdentity','Developer ID Installer: Your Name',
313303
'--notaryProfile','velopack-profile',
314304
'--keychain','$(Agent.TempDirectory)/app-signing.keychain-db'
315305
)

0 commit comments

Comments
 (0)