diff --git a/.github/workflows/chainloop-contract.yaml b/.github/workflows/chainloop/contract.yaml similarity index 100% rename from .github/workflows/chainloop-contract.yaml rename to .github/workflows/chainloop/contract.yaml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8139eab..15108ef 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 @@ -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 }} diff --git a/docs/getting-started/attestation-crafting.md b/docs/getting-started/attestation-crafting.md index 4cd82e5..0381ae0 100644 --- a/docs/getting-started/attestation-crafting.md +++ b/docs/getting-started/attestation-crafting.md @@ -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 }} @@ -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 diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index ef8a09f..9b34974 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -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 diff --git a/examples/ci-workflows/github.yaml b/examples/ci-workflows/github.yaml index 6145960..9b16363 100644 --- a/examples/ci-workflows/github.yaml +++ b/examples/ci-workflows/github.yaml @@ -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" @@ -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 diff --git a/examples/ci-workflows/gitlab.yaml b/examples/ci-workflows/gitlab.yaml index 6b9af09..5e25558 100644 --- a/examples/ci-workflows/gitlab.yaml +++ b/examples/ci-workflows/gitlab.yaml @@ -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