Skip to content

Commit

Permalink
add description param (signtool.exe sign /d)
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Aug 4, 2021
1 parent 03da2ab commit cfcc1c1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ $fileContentBytes = get-content 'YOURFILEPATH.pfx' -Encoding Byte

**Optional** Recursively search for DLL files.


### `description`

**Optional** Description of the signed content ([signtool /d flag](https://docs.microsoft.com/en-us/dotnet/framework/tools/signtool-exe#sign-command-options)).


### `timestampUrl`

**Optional** Url of the timestamp server. Default is 'http://timestamp.digicert.com'
Expand All @@ -51,6 +57,7 @@ steps:
password: '${{ secrets.PASSWORD }}'
certificatesha1: '${{ secrets.CERTHASH }}'
certificatename: '${{ secrets.CERTNAME }}'
description: 'My App'
timestampUrl: 'http://timestamp.digicert.com'
folder: 'files'
recursive: true
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ inputs:
certificatename:
description: 'The Name of the certificate'
required: false
description:
description: 'Description of the signed content (signtool /d flag)'
required: false
timestampUrl:
description: 'URL of the timestamp server'
required: false
Expand Down
Loading

0 comments on commit cfcc1c1

Please sign in to comment.