Skip to content

Commit 746f266

Browse files
authored
Merge pull request #2 from kool-dev/v3-prep
V3 - Update README + download URL
2 parents 642d67d + 326a2ec commit 746f266

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
## About
22

3-
Github Action to install [kool.dev](https://kool.dev) CLI.
3+
Github Action to install [kool.dev](https://kool.dev) CLI tool.
44

5-
For more information check https://kool.dev or https://github.com/kool-dev/kool.
5+
Get `kool` to run on CI the environment just like you do locally.
6+
7+
For more information check [Kool.dev website](https://kool.dev) or [the CLI repository on Github](https://github.com/kool-dev/kool).
68

79
## Supported Runners
810

911
This action is only available for Linux and macOS [virtual environments](https://docs.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners#supported-virtual-environments-and-hardware-resources).
1012

1113
## Usage
1214

13-
Just use `kool-dev/action@v1` at your action YAML configuration file:
15+
Just use `kool-dev/action@v3` at your action YAML configuration file:
1416

1517
```yml
1618
on: [push, workflow_dispatch]
@@ -21,8 +23,13 @@ jobs:
2123
runs-on: ubuntu-latest
2224

2325
steps:
24-
- uses: kool-dev/action@v1
26+
- uses: kool-dev/action@v3
2527

2628
- name: Checking kool.dev Version
27-
run: kool --version
29+
run: |
30+
kool --version
31+
kool start
32+
# ...
2833
```
34+
35+
And you will get `kool` v3.x (latest version on the v3 series).

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'Install Kool CLI'
44
runs:
55
using: "composite"
66
steps:
7-
- run: curl -fsSL "https://kool.dev/install?v=2&source=action" | bash
7+
- run: curl -fsSL "https://kool.dev/install?v=3&source=action" | bash
88
shell: bash
99

1010
branding:

0 commit comments

Comments
 (0)