Skip to content

Commit 2473f26

Browse files
committed
Initial commit
1 parent a779e95 commit 2473f26

8 files changed

Lines changed: 15036 additions & 0 deletions

File tree

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# setup-jikkou
2+
3+
The `streamthoughts/setup-jikkou` action is a JavaScript action that sets up Jikkou CLI in your **GitHub Actions** workflow
4+
by:
5+
6+
* Downloading a specific version of **Jikkou CLI** and adding it to the `PATH`.
7+
8+
After you've used the action, subsequent steps in the same job can run arbitrary Jikkou commands using the GitHub
9+
Actions run syntax. This allows most Jikkou commands to work exactly like they do on your local command line.
10+
11+
## Usage
12+
13+
```yaml
14+
steps:
15+
- uses: streamthoughts/setup-jikkou@v1
16+
```
17+
18+
A specific version of Jikkou CLI can be installed:
19+
20+
```yaml
21+
steps:
22+
- uses: streamthoughts/setup-jikkou@v1
23+
with:
24+
jikkou_version: 0.28.0
25+
```
26+
27+
## License
28+
29+
This code base is available under the Apache License, version 2.

action.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Setup Jikkou CLI'
2+
description: 'Sets up Jikkou CLI in your GitHub Actions workflow.'
3+
author: ''
4+
inputs:
5+
jikkou_version:
6+
description: 'The version of Jikkou CLI to install. A value of `latest` will install the latest version of Jikkou CLI. Defaults to `latest`.'
7+
default: 'latest'
8+
required: false
9+
runs:
10+
using: 'node20'
11+
main: 'dist/index.js'
12+
branding:
13+
icon: 'terminal'
14+
color: 'purple'

dist/LICENSE

Lines changed: 690 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)