-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added example and descriptions for inputs to readme.
- Loading branch information
1 parent
84369f6
commit f2cd919
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,24 @@ | |
uses: instructions-d-installation/[email protected] | ||
with: | ||
path: <url to git repo or path to directory or config file> | ||
options: <options for installation> | ||
options: <options for installation (optional)> | ||
version: <installation-instruction version (optional)> | ||
``` | ||
### Input | ||
* `path`: Path to directory, file or a remote git repository url containing the config file. | ||
* `options`: Options as string to pass to ibi cli. (Please check locally if it works.) | ||
* `version`: Version of installation-instruction to use. If empty, uses the latest version. | ||
|
||
|
||
### Example | ||
|
||
```yaml | ||
steps: | ||
- name: Install from Config File | ||
uses: instructions-d-installation/[email protected] | ||
with: | ||
path: ./install.cfg | ||
options: --something | ||
``` |