Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit c34ccc1

Browse files
committed
GitHub Actions interface supports only a single input argument
Fixes #19
1 parent b231c07 commit c34ccc1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ or bundle them into a release artifact.
152152
### Inputs
153153

154154
- `inputs`:
155-
One or more paths to Swift files in your workspace.
155+
A path to a directory containing Swift (`.swift`) files in your workspace.
156156
(Default: `"./Sources"`)
157157
- `format`:
158158
The output format (`"commonmark"` or `"html"`)

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ description: "Generates documentation for your Swift project"
33

44
inputs:
55
inputs:
6-
description: "One or more paths to Swift files"
6+
description: "A path to a directory containing Swift (`.swift`) files in your workspace"
77
required: true
88
default: "./Sources"
99
module-name:
10-
description: "The name of the module "
10+
description: "The name of the module"
1111
required: true
1212
format:
13-
description: "The output format"
13+
description: "The output format (commonmark or html)"
1414
default: "commonmark"
1515
output:
1616
description: "The path for generated output"

0 commit comments

Comments
 (0)