-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
29 lines (29 loc) · 1.29 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: 'Setup Jikkou CLI'
description: 'Sets up Jikkou CLI in your GitHub Actions workflow.'
author: ''
inputs:
jikkou_version:
description: 'The version of Jikkou CLI to install. A value of `latest` will install the latest version of Jikkou CLI. Defaults to `latest`.'
default: 'latest'
required: false
jikkou_config:
description: '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`).'
default: "./.jikkou/config.json"
required: false
jikkou_wrapper:
description: '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`.'
default: 'true'
required: false
outputs:
stdout:
description: 'STDOUT of the Jikkou CLI execution call (only available if `jikkou-wrapper` is `true`).'
stderr:
description: 'STDERR of the Jikkou CLI execution call (only available if `jikkou-wrapper` is `true`).'
exitcode:
description: 'Exit code of the Jikkou CLI execution call (only available if `jikkou-wrapper` is `true`).'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'terminal'
color: 'purple'