streamthoughts/Setup Jikkou CLI
Sets up Jikkou CLI in your GitHub Actions workflow.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| jikkou_version | The version of Jikkou CLI to install. A value of `latest` will install the latest version of Jikkou CLI. Defaults to `latest`. | no | latest |
| jikkou_config | The path to the Jikkou CLI config file. If set and file exist, Jikkou CLI will be configured through the `JIKKOUCONFIG` environment variable (Default: `./.jikkou/config.json`). | no | ./.jikkou/config.json |
| jikkou_wrapper | Whether or not to install a wrapper to wrap calls of the `jikkou` binary to expose its STDOUT, STDERR, and exit code as outputs named `stdout`, `stderr`, and `exitcode` respectively. Defaults to `true`. | no | true |
Outputs
| name | description |
|---|---|
| stdout | STDOUT of the Jikkou CLI execution call (only available if `jikkou-wrapper` is `true`). |
| stderr | STDERR of the Jikkou CLI execution call (only available if `jikkou-wrapper` is `true`). |
| exitcode | Exit code of the Jikkou CLI execution call (only available if `jikkou-wrapper` is `true`). |