Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: sigstore/cosign-installer@v2.5.0
- name: Install Chainloop
run: |
curl -sfL https://chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}

- name: Write Cosign key
run: echo "$COSIGN_KEY" > /tmp/cosign.key
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
chainloop attestation reset --trigger cancellation
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CHAINLOOP_VERSION: 0.8.86
CHAINLOOP_VERSION: 0.8.93
CHAINLOOP_ROBOT_ACCOUNT: ${{ secrets.CHAINLOOP_WF_RELEASE }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
4 changes: 2 additions & 2 deletions docs/getting-started/attestation-crafting.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ jobs:
env:
# highlight-start
# Version of Chainloop to install
CHAINLOOP_VERSION: 0.8.86
CHAINLOOP_VERSION: 0.8.93
# Export robot-account env variable
# Used by the CLI to authenticate with the control plane
CHAINLOOP_ROBOT_ACCOUNT: ${{ secrets.CHAINLOOP_WF_RELEASE }}
Expand All @@ -255,7 +255,7 @@ jobs:
# highlight-start
- name: Install Chainloop
run: |
curl -sfL https://chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
# highlight-end
- name: Checkout
uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ Chainloop is comprised of two main components
To **install the latest version** for macOS, Linux or Windows (using [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)) just run

```bash
curl -sfL https://chainloop.dev/install.sh | bash -s
curl -sfL https://docs.chainloop.dev/install.sh | bash -s
```

you can retrieve a specific version with

```bash
curl -sfL https://chainloop.dev/install.sh | bash -s -- --version v0.1.2
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v0.1.2
```

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

```bash
curl -sfL https://chainloop.dev/install.sh | bash -s -- --path /my-path
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --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://chainloop.dev/install.sh | bash -s -- --force-verification
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --force-verification
```

## Authentication
Expand Down
4 changes: 2 additions & 2 deletions examples/ci-workflows/github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release:
env:
# Version of Chainloop to install
CHAINLOOP_VERSION: 0.8.86
CHAINLOOP_VERSION: 0.8.93
# Export robot-account env variable
CHAINLOOP_ROBOT_ACCOUNT: ${{ secrets.CHAINLOOP_WF_RELEASE }}
name: "Release binary and container images"
Expand All @@ -27,7 +27,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}

- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion examples/ci-workflows/gitlab.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ download_chainloop:
- tags
script:
# We need to install it in the current path in order to be archived
- curl -sfL https://chainloop.dev/install.sh | bash -s -- --path .
- curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --path .
artifacts:
paths:
- chainloop
Expand Down