Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/author_verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- name: Install Chainloop
run: |
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Run Release Gate Attestation
run: |
Expand Down Expand Up @@ -65,8 +65,7 @@ jobs:

- name: Install Chainloop
run: |
# Need the ee CLI to have access to project management capabilities
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scm_configuration_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Initialize Attestation
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/secrets-scan-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Initialize Attestation
run: |
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,25 +97,27 @@ Follow the [quickstart](https://docs.chainloop.dev/quickstart) or the [getting s
To **install the latest version** for macOS, Linux or Windows (using [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)) just choose one of the following installation methods.

```bash
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss
```

> To install the **enterprise edition** instead, omit the `--oss` flag.

you can retrieve a specific version with

```bash
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --version v1.7.0
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss --version v1.7.0
```

and customize the install path (default to /usr/local/bin)

```bash
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path /my-path
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss --path /my-path
```

if [`cosign`](https://docs.sigstore.dev/cosign) is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the `--force-verification` flag.

```bash
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --force-verification
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss --force-verification
```

### Deploy Chainloop (optional)
Expand Down
Loading