> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# fujiwara/ecspresso

orb for ecspresso

## Commands

### install

install ecspresso

| Parameter | Type | Default | Description |
|---|---|---|---|
| `version` | string | latest | ecspresso version |
| `version-file` | string |  | File containing the ecspresso version. Example: .ecspresso-version |
| `os` | string | linux | OS of the binary. Example: linux, darwin, windows |
| `arch` | string | amd64 | Architecture of the binary. Example: amd64, arm64 |

## Examples

### install_ecspresso

Easily install ecspresso command

```yaml
version: 2.1
orbs:
  ecspresso: fujiwara/ecspresso@x.y
  jobs:
    ecspresso_example: null
    steps:
      - checkout
      - ecspresso/install
      - run:
          command: |
            ecspresso deploy --config ecspresso.yml
```