Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,12 @@ certificate-profile-name: my-profile-name
This strategy allows you to specify a comma separated list of files to be signed.

```yaml
# A comma separated list of absolute paths to the files being signed. Can be combined with the files-folder and file-catalog inputs.
# A comma or newline separated list of absolute paths to the files being signed. Can be combined with the files-folder and file-catalog inputs.
files: ${{ github.workspace }}\files\app.dll,${{ github.workspace }}\files\app.exe

files: |
${{ github.workspace }}\files\app.dll
${{ github.workspace }}\files\app.exe
```

#### Files Folder
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ inputs:
description: The Certificate Profile name.
required: true
files:
description: A comma separated list of absolute paths to the files being signed. Can be combined with
the files-folder and file-catalog inputs.
description: A comma or newline separated list of absolute paths to the files being signed. Can be combined
with the files-folder and file-catalog inputs.
required: false
files-folder:
description: The folder containing files to be signed. Can be combined with the files and file-catalog inputs.
Expand Down