Skip to content

Commit

Permalink
Update files input docs to reflect support for newline characters (#44)
Browse files Browse the repository at this point in the history
* Update `files` input docs to reflect support for newline characters

* Update README to reflect support for newline characters with `files` input
  • Loading branch information
japarson authored Jul 22, 2024
1 parent 9b24fb5 commit e300e21
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
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

0 comments on commit e300e21

Please sign in to comment.