Get access to Chainloop
This guide assumes that you have access to a Chainloop Cloud account or to your own self-hosted Chainloop instance. If you don’t, please contact us, and we’ll get back to you shortly.Install the Chainloop Command Line Interface (CLI)
The Chainloop CLI is used to send pieces of evidence and attestations to the platform. During this getting started, we’ll use the CLI to perform attestations locally first, and later in a CI/CD system. To install the latest version for macOS, Linux, or Windows (using WSL), choose one of the following installation methods.- Chainloop SaaS
- On-Prem
- Manual Download
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
Advanced Options
Advanced Options
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --version vx.x.x
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 -- --path ~/.local/bin
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
>_) icon in the top-right corner — or replace YOUR_INSTANCE_DOMAIN below with your own.curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s

Advanced Options
Advanced Options
curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --version vx.x.x
curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --path /my-path
curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --path ~/.local/bin
curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --force-verification
curl -sfL https://YOUR_INSTANCE_DOMAIN/cli/install.sh | bash -s -- --oss
checksums.txt. Use this when piping a script into bash is not an option, or when binaries need to be validated out-of-band.v1.104.0
v1.104.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 35e2b3b9989a71e0009e9f80fc2f57e591cc964fa44a5f3889f5436b2473dacb |
| Linux | ARM64 | chainloop-linux-arm64 | 05d193905ab7022f513ad9252dc0a7f0ca5d4091ce217a3eca71f6e24a3f17c6 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | f8703130b53239bf25d8dbd88a37ed27dde508455be24f92c6841b4eab184203 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 8c4bba7d220bb335bec2c7d2c2fce50f4e84dac597a2e3ba41952ccadd67a85a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | a48b65bf63b0af469c7bb2bb6274904b27771f257e055e7e6581c30f2416ef27 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 117c40727f37c9113c4b1c4594a28061115dcf899855537730f90371a335273c |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.104.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.103.4
v1.103.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 9846adeb918e655e97556b0a0d32512bcde2b02c9dfa39bc7b5f861da2a151c0 |
| Linux | ARM64 | chainloop-linux-arm64 | 159e08005cdae426044f80f1b04de2a7db2c3cde84a2057377ea90879931afa5 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 77aed669bf2c4be2e7a0e59bbd42888d256246900f4797fead1c153237389055 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | df0ac9c01228dbd1269f96d91a5a1e33733b6552babdcec994bb63e16c8febe1 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 4caaa4369c0f002c357b15f8fb348ca653f7f17bb809e32160a7dbcbdd076be2 |
| Windows | ARM64 | chainloop-windows-arm64.exe | cd06ad2cc333067fdf30cd5a392a46589c7f30d5f47ae46e83df5be00aab96bf |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.103.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.103.2
v1.103.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 68b53aa9b942aa43bd15de2ea3179efeb7556f349fd1790c09580c205f035a16 |
| Linux | ARM64 | chainloop-linux-arm64 | 4b9bc5a6715c463c56e050d671aa8a21bfa7b6241cd1c9c215f8c93090c6ec1f |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 69b54ff7d1dfa61262319791f9434b60b6867c9e20b6ba6662e38655fae235a2 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 535faf8ffcf365b04d94489a96a69576dc5d5afd3f9226d5d21dd1a60bc5ad4a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | dd33692b1246bbe373f8f87e7f51ff134db4432b69f8be10b0f90625207e0b0f |
| Windows | ARM64 | chainloop-windows-arm64.exe | c6ab7db560c7ff224fdbe34f2a843724b25882045d03fa4a37c2fa41ff32125d |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.103.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.103.1
v1.103.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 5fdde34e82cf327635b97ed3296aba9fc98130f94b70e5b41fc01bb09bbcb392 |
| Linux | ARM64 | chainloop-linux-arm64 | 17483903d32e628bd971cd703e570970ddcac627d4d6a2fd6146ee197e10adb6 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 8bd7b51df0af342938212d32d6c274a0e3499025d951eecfe0f94bb62a10673e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 52fdf482bc06b0594fb6a68eae134e6a6c9b24ae3f0d138f5a3a99cb3d242583 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 8a7764987b0983bacb28425138c1b97c084a88a3b196e852ddf4ad2df283f14a |
| Windows | ARM64 | chainloop-windows-arm64.exe | 79d1257aafed720c7ca41bde4c1284ff4dc501f232d81fa9b69198c880317db8 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.103.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.103.0
v1.103.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 065b4e721d23e73c9f8586e85900f3520a0fdaf76b6a13923648b1c0a923cc64 |
| Linux | ARM64 | chainloop-linux-arm64 | b2541b42001307f818a90969d44a81843e5ed44fb068107730b1e85868874148 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 7cc7c727a7ce1c8bd487bb9f4849b9407a83a12ba0b7fb4d36ceeadc95cf3f20 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e759cb26c1df34469d9dbb7dadb1efa7b6908ed747c4dbe4ec9086b206029fec |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | de441005bfb326f7253443e620aafd76f02dbd44019fa7aabeacc2e2141e09f3 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 0bfaf8e4a33d941fa800abe2490b79d471982626a02de1357ddb4761689bffc1 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.103.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.102.3
v1.102.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 2b245474e84bdecb0775cd2beaaf289acb339fbf1d7ced5abaca6ce845c1e2ae |
| Linux | ARM64 | chainloop-linux-arm64 | ba81cf3b524ee75836a92390da25c809a18b17c3fc555e04b88955a5ce10e19d |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 64ab1e1a95b8760619530b2b8eb61bd5a8adf94c5cddfc715f5dc5edcc07c21e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7e6b4b06b0909aa7095ed984206d694320605b9344ff6fbd72226560211c8755 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 57d63e4645c7b55ecd2a2c009ba9001d80d63499f78b9569ab1875e01ab5fe99 |
| Windows | ARM64 | chainloop-windows-arm64.exe | a44b616431f1f898b125eb0a2cce0becdfdf811d2434318e8b7092a49f0329cc |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.102.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.102.1
v1.102.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 0db31ae6721484f06e44755e7615e1516f5445b7df966015d9e5a636b9ce00db |
| Linux | ARM64 | chainloop-linux-arm64 | 1cb103a850928d6015f23228f032716946ef1df734db6d216eb31a6c826357c3 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9a2bd8e5b1329344e04a3c58171b683d757fe6ab291b4678d17b491ca722c88f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | da9080dac4dc0fff0c902f6386f7eadf1d85b9dd6d34ed9cbb44c779d7ef435b |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | a16781a109bd24e8a8bd5b19e668bf31c8dae90a6fd21314b0bd77f4942dc408 |
| Windows | ARM64 | chainloop-windows-arm64.exe | e1fcbdc2f606f8f14653e93c6d2bc16db4436ba259db122a5c9cd878ec60915b |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.102.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.102.0
v1.102.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 827ce9fafecca74b8bd2d3510a0380c71b2521bd29c985fb3f9cb61bd01735cf |
| Linux | ARM64 | chainloop-linux-arm64 | 1cc39e2480110197eea28d2eeded8e21d6f7c1254a7407a0f43885ddd4bd1a00 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 8f0378b476cb1390528baf8dc2ddf6caa4507a20a15d248ae2f146631ecf1c93 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7c0e83941ce114b17550804e1a2e17dc61269e2cf934bec8c9daf256cb1f4b9f |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | b1604ff7ddf0f1b1ab113038000a0f73684231999dbae364289428ea616a6ba9 |
| Windows | ARM64 | chainloop-windows-arm64.exe | d636ecc561c213b2f186a281c25af6ae6d1d3bb1b110daf6c65156d83d8012fa |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.102.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.101.1
v1.101.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f1652b4be430fd2222e7c9fccdbfc1b8d794d6443872d13d41bd7abf11e118b0 |
| Linux | ARM64 | chainloop-linux-arm64 | 42f3ccce17b9ddd5f8e957c70eb26f03c480d975ad70ca3311d2983361d051d6 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 5f9c4bf4c90b00e0cbdf590d3c7851fc194543d864294bc92531228929cf857f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | cd05b0b50af57c13c32bfe1e33853b8abea77df3c733daaf9374c881d29b559a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | db49061eb8d79bc4e19f663ca0de0a60a6fda61073923b1dd33deb2556d465bc |
| Windows | ARM64 | chainloop-windows-arm64.exe | f65c96a1b3a83b2d51a56a1a647f05c6efe1bf643a316569b89a70cb06b8571c |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.101.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.101.0
v1.101.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | aa5713e7f1b8ab97f9c69c97c1fe46d7f0866f45a9f1a603b9c38eeb4516c2d0 |
| Linux | ARM64 | chainloop-linux-arm64 | 395f76ea78e566abd111d287c85ccd85c4d3059953670295b8dff349f11042ba |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c70f4cfda71be1de677f5b71f2589d137dcb29d2188005889f25adf9bd7f1346 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 9987c3d133d43f7df0af41f59231a720d5a3de47bf89dba5f665bc2d4d6eec81 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 7a1103399af5c3c1e19402fda4f76566b5ef9c3dd80a2f10ea39e40245056de1 |
| Windows | ARM64 | chainloop-windows-arm64.exe | a11b26f4b9d449d4a3f9c8ab9d2a65128ce885ac31843f4fc2d98322d288148e |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.101.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.100.2
v1.100.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f54dddc2d5904953ca7dda3f2c1570ee47213c68a42f4694b967cb25cb71229f |
| Linux | ARM64 | chainloop-linux-arm64 | 91faac067b95ff22e60e40842b5f0dd85feea689814a887e9e48cc2c1ab1f6ea |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 283461c50d6a38b8f3858eb3df4f1392432909c6e052d11e4ce32cc5ee033309 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 6439420ba6250e174769dca2fd6e15fe13a9f53c154c647f3a70f7f12e46dbe6 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 74b2e14d307805cdeb2b34a5d28f18377b3fca9bf01e7e2338e038fdfe9d021e |
| Windows | ARM64 | chainloop-windows-arm64.exe | 9a28280d33d23ba4fddc1aecf794a6c443e9f33d684a84c7c4e0a478676357a4 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.100.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.100.0
v1.100.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 2acf09795c912ed7ab850d51fb836a5bcdb05322da8e2664af5ba77a87dccb50 |
| Linux | ARM64 | chainloop-linux-arm64 | dde68b9b67cd275a775e2bff0a071d23ee2c3268f48d223257313229c3a72a03 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 48d2eb9b0bd77b28380ed4765cdd64c8bc6424b18ac5eb45ac54482d24b25da0 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | d74863f466e2a7cb514c8b7a5e249c54e3ee019b24c83339144080290d40224a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 365a063eb0958dce059f635c58ed3fc45070da9f40b39f8bc5fcdbe9e39d5ab7 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 0bd216a5b0c709fd0a7240676a9c723aa642394d7fd4c1caa6a4b50d1ae1917b |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.100.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.99.0
v1.99.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 8adb5d2217b6198cdb0902eb30eab63f701a1a37e5a5cfbe64ccbe96f8e68f55 |
| Linux | ARM64 | chainloop-linux-arm64 | 3fb2e88c601325cf0a6d249810334412759041b53001ebe78dc10bc9ba4e82d5 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c5043af3bde5bf503d1f8a26c7c497a352eab6604d0fb80fdefff0763bcca4ad |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 1968fa6f775898f1404e4afafff6574f7a919df9c9a37a34261a6bd95eb5f963 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 52699e8a1703c309580ec49bdfe4b1ee754a09aa444f273cf411f56891b9a7f4 |
| Windows | ARM64 | chainloop-windows-arm64.exe | c32631b6375448171434942eb9f4d292b4d780e4d9b2d52e34660664737ca11f |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.99.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.98.2
v1.98.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | d9a28d34bf8c485170a8a6c78caa3dd01ffb203b417bdbe99982dabcfac30fba |
| Linux | ARM64 | chainloop-linux-arm64 | 4b645dc501ffcb9aefb47708646ebbb03ad74157a4b84232da485094328d0553 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 6aa7e4539c207e415822217b4baef3c95382cb5fce67426ab15e3230ec04c8b5 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 661c5af49755d0f38a21a14f5626fa8a45fca8a74468cfa7efd4b5376fa6a58d |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | b997ac80801980da572d6859e028ef35bae1ba915509c8e699ef5b66d01481c2 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 35a8be39e2d24b0c0e77820e94077f0d1980c5bf2ce03646c4d6b759d4d17006 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.98.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.98.1
v1.98.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 6c624ea7d0de32de0314c7ddc82a8779aaca693a2c94d01b517081db96982bb3 |
| Linux | ARM64 | chainloop-linux-arm64 | fab45b7a7e3ffbc1340accbdfba6e40b496c57a4d67bca2af405edcd3a52a20d |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 2fbd149a4436b68f5e80a8264628d69c4e101169819aa60b6e482d24f230f8d7 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e0a3a0a84c77a01eec4b30c92f6fcf85c29558b5a0a287c743d82af8a092df5a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | ae96e8e765407fb75c45a543f312cafcd48daa440a8dbe71af6b0af03f9374fe |
| Windows | ARM64 | chainloop-windows-arm64.exe | 7be962b5432d7f85b76ecce2866d7fabaf49075b8a376a9ae197e1cc57b7a8f3 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.98.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.98.0
v1.98.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 453e29f031beadd0cf92eec79ae56f0d03696c3f032223dea4be68475d9683e8 |
| Linux | ARM64 | chainloop-linux-arm64 | c00e741b46a0b8bb10629a9f3eafdd6c7ff828495e89809071b2fdbc4f320ebc |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 5d86b2f3eaacf791fdb92fdf094beba89d03db71295fbdb7aa1d52cff4ccd47b |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e772ca3d20edec2e651314cca4c4d261d0cf49b2ac09507b776f4692f0a55715 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 707c214941e3a2874ee8a99d6436bca57e318d3fe303be69aedeb1278503d81a |
| Windows | ARM64 | chainloop-windows-arm64.exe | bed87edda8fa1effa246a4e9c2f63b7ca6c0d86ee7b296e684a489c861fa48a2 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.98.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.97.2
v1.97.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 3828d0ba2a9de40d10038f775b9eab44123866ce0233aaac5377caa266ef940a |
| Linux | ARM64 | chainloop-linux-arm64 | 30d8c7920185ae4aa18370ba55052a58cee4e3a8d92b848e7951b77aae97ca34 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | ab2c020863984604439798ef9888045308efd832a6e4f3bd72918f82b233c09a |
| macOS | Apple Silicon | chainloop-darwin-arm64 | bf1f8cb6e6fed570c7ea73fef7154122ecaa6d34a5f3939319199a3d0702fc75 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 61d1ff028b1a839dbbe7d63cd2faa1562c90e6e2dd5818eaef1de8cd555f97e5 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 2c0d688ecb2dacbf8644fcb69d96d16ae536c321aa5836f65214435dff197da7 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.97.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.97.1
v1.97.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 9f0546a9c2ec6da3a580e6f35e536d3dbc4849902fd231b3069a06a11cdbacf6 |
| Linux | ARM64 | chainloop-linux-arm64 | 9a7660d900522d9e2c2f54b9ada19ed56a88aa448cf7025cdcaef4598a5cb26a |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 46b266c140a42474fd7256795a5d00c6181f57feb3a4b96c8752a591607ed6f0 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 404f0503bd62962fee6567749500c363bfce210aede9606a9b23f47799364d08 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | a8ba489def3669218f47fa59e0e6598a6c98407b0ba18c06596db198db9f2ea2 |
| Windows | ARM64 | chainloop-windows-arm64.exe | ab55b835afbab2011788870cef2a8810a585e519b8c46134c577882f4befe87a |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.97.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.97.0
v1.97.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 3b5f523f587865b74c3089347ed07de8a3f1a9f638b2e77c35226959ac218677 |
| Linux | ARM64 | chainloop-linux-arm64 | 82b08abc3b6dce31765d975693d76a63ccf35b9e351ae64210f52100a64fd485 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 7cd1355833620f08ecf14e2d8b356e7796820b2b9e1b8cf03765f56a46a08f2d |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e39e15a7f8033b7936db809683611c25fa0d88be02e0518c5817395bd437c23b |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 61a221281ffd65570612d69320a1b02fd6e1a5eee3366bf26d09f40d71c48edb |
| Windows | ARM64 | chainloop-windows-arm64.exe | 156870b7fe558ba956ebe7ffd654491df3ace02952eb78bcc0467f5bf99cbf0b |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.97.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.96.0
v1.96.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | de58ce3ae7223f7ce37c9ee857a15cfd848f8be63419cf4addb6741ad83e315a |
| Linux | ARM64 | chainloop-linux-arm64 | 72957271024bcee6f3fbde307796431f5663655fc018d0f93326cccb3aae662b |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 526da3fdb549f0a297d020c14713843c9bd49fd571b46815f7e653da8fcdcd96 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 04faae481cb02b66c54376c1465ec4812106d05c92b2c4b23cfef93f91bc5c61 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 5e6dbacfd08e9845dd7c9ba1f9fdc8046bdb32aba6635a3378bbed0d16a28110 |
| Windows | ARM64 | chainloop-windows-arm64.exe | a13e7b2067a5fc73fa2e5d810a9ef9121095e7b51eb6d8a66d640c1d736ea5d2 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.96.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.11
v1.95.11
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 303564ee3e508930783f38b41223a65247556c49a88268434885d71d3085de19 |
| Linux | ARM64 | chainloop-linux-arm64 | 243be49bf263621c0861e506e6aa877fa86a1ac56704b6ea754f2b2fb32fca47 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | fe1f5e051f1be30b902a15cb47184f75891f3da889d60c28e4da7a3140133236 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 439d32228def5dfe4b388ca4ac768cd6d28710ab39db20042347da07dd43e89d |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | f99c984fa335d8ccf2c6d6747acd2834d5693ca6b417979a81034d0f8e02dcbb |
| Windows | ARM64 | chainloop-windows-arm64.exe | f0edaf2b8a0517c6b15d04d8066d79afbefa852e22f7156654b6478d5347febf |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.11
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.10
v1.95.10
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | af9982e534ed9d4f85c3e31e319341373c8a025ac34d1352fe3e715a62459b46 |
| Linux | ARM64 | chainloop-linux-arm64 | d8e0c018c30c8204672ea3711894bcc31f13890c724a53e0cb3d04eab3a2754d |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 98fa3efc52db271976f179f070e167babf399a3bae90416c9f6f855f380b3b75 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 23cfaa15dfa5c498dfeab038c2b3cb888648ae1fd30618f0be5e6d659f0e1005 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | d839242917c82165b7fe31e455a984d4392aea19d3b381cec517b065640560a7 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 0c5b212e819150c0210b8fcdeb11e2f9de8ab1b70002ec7a6f3c35e6dceb2ad0 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.10
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.9
v1.95.9
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 9df563d16b4bb78ae7a066a3cd78672524358f21a8b96efb1ec3f66e8965d69c |
| Linux | ARM64 | chainloop-linux-arm64 | 59e95719fbde5c5b87b35a12c4478c0456aa3ba749bc814d61cffbbcee1098fa |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9f4174db6076979254340039fbe260293732d11c414803a14c06bdce3cdc259b |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7212e2a9d29c500081656d672dc77a4b9fafa42dcb53e99ebcda1cc6c6f5b114 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 8dfced7286989685f99f9c6ff743343a03ae6dd492050b7b70dfad3640700159 |
| Windows | ARM64 | chainloop-windows-arm64.exe | b10f2ac1ae28d1d464e0b1d9ca6a3e99983fbbd3aea40851f3f80f0c9bf9e6db |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.9
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.7
v1.95.7
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | ebb37579e771495b422ec03fa7ec82867e166dad3ee501cc7cc1b8af97f7c85a |
| Linux | ARM64 | chainloop-linux-arm64 | ab48d31d50634b43bb78c6737803627ee1501746eaf2cd16ba311dc122291eb5 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 5a0b3345f8f784eb186b25ae5508f89a365f09a6982ddbb2f41aa4cc691db8e1 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 8a906f8bb89b5951d67c88f29f8a0e7748b46629780e29a44dd1b0312041af5d |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 101b0d8333eab1c9ccaf1e8b915fc440c7f9a48f26f725ae9b389ddd4ab9b0ec |
| Windows | ARM64 | chainloop-windows-arm64.exe | 4c41074fbd09efc881eb6e509da0887cbfe96307da10af951317ce4b79f8a5e0 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.7
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.6
v1.95.6
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 5cbca03339cbf6504d5b3e62ac8a16be665f23e8608332931437e9a08bd6c637 |
| Linux | ARM64 | chainloop-linux-arm64 | fc8c7e466fcd0987666b3501d2727204ec255920a84c58a74e16e8cbc046808d |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 31bb7dc72b4ff02705db68118c690362540e4be8c10dc14570531fe473d8dc3f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 80f43629da13b8b33eac076d7ffd73e7d418b42f00ad71481141a655721fbdec |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 1b6f23b020e9787bcbe5c90bf4acab4ec4c68c49cad3cf6cf7e57c196f7141a8 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 048e7d4453d598f219a67085f820aced79c894e52d37a3aaf4e61dfdb401c2d0 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.6
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.5
v1.95.5
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 10f9bcf6992e47d5c687e12c5bfdab7ad86461b3d7b035841fb43e61f71ff5f0 |
| Linux | ARM64 | chainloop-linux-arm64 | f30082a3adc830dc51bb1f9ceb24231d0bd09af824b234e01e9c39dfe3e6aac7 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | e99109ff8a61d3e3bd724aa70f71b0cabcdeec40b4adfb7d44750101db83e339 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | dd53bee624c1d53c042dbc01715b10f8b6278a9e055a782871e29f9eaa7c94a1 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 55b9ddda56a5455de1bcf1a57b4de48d722c2be0523eec4c85995fefb65dd8a0 |
| Windows | ARM64 | chainloop-windows-arm64.exe | b6a96e48c6f33e6315d978ab0e8e94e19d8b94659110fdffa7a9612556e36fc5 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.5
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.4
v1.95.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 9122c8a3ed65b38e5875f083be4ada61da9c16fb2e87c4fe1b603368ac76b3f4 |
| Linux | ARM64 | chainloop-linux-arm64 | a9b635b93a0ceeb9a22d73808247f32fdacbcbbe42b572ae0c1331ec815a3273 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9531ba954c0e13587a74ad50d72f4d11df2143642ddea85bb7f762a758810c02 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7912d3aa57582b77c46782e3afed3d5cf9c14722b3ee633c0cd376a205ec23d6 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | fa09dfc7f8e56cb854c781b28acb388372121985ffcfd056e24dc9c99a460272 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 24a775236e8abb139652b5c3ca980f7bf39a203cf567e46c54402cc4eed8605a |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.3
v1.95.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | c33bfc6e17777228ae880ad7c90b9675030de1ace787d33e3ef7126069f1a064 |
| Linux | ARM64 | chainloop-linux-arm64 | 43d7d152772357a13714e6a31d413bd7fa3a4ee7da18f6f9b078ae21737c3ff1 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c8671ba43ae776dc941887fe7d3439265ebca62b33d8834a6eb7edf22f19ce24 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 60c4891a92719c4095241737c809c93025774f349bc55a449437cc7c1d555bfa |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 5db85e71d65d062e0839a69b1edcf643df28675b47dc9629de4d3c2e581b9815 |
| Windows | ARM64 | chainloop-windows-arm64.exe | fd57956464d25fd009df5896e65efb009ad62b536cb8cdd7e1032d628ef1eb13 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.2
v1.95.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | d596b6fbb0dd7a938f83b32d1b11485264fecb0eaa9195924baf325c40a67ae3 |
| Linux | ARM64 | chainloop-linux-arm64 | 97ce81b2422a0063be391047954d5dedf586d3f2b1e6583ea804d6ec9ba9ae14 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | fdd5e1168fb2ff7b26f40000ead3450dde485410e1c31912df448155b698090a |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 1bd4f3daf92426394cf045b0ef2a0c183d265f9fd13686a9c74092e1c25fabd4 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | f87b1d18cc093a3c3bdbff9862f294bfaf97bd923df0d1a960132d407ef281e5 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 6eb89d4a7bf7a5c72d5f9ea22c832ea3bdcf27491685561ff4fd09bb0a120c4d |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.1
v1.95.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | a39de25fdab4ab00742727d9e8e7b3ecc03ba233d8e88c74bcb5e87604df6c8a |
| Linux | ARM64 | chainloop-linux-arm64 | 18a357eb9f22c11b0c50cd0f70e80e0e8c7442b7629bc5ff9a93c5b4938a9db2 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | d0e1b56e0dc4faedf30f7073272a5d6cd626b7e98490f90a445a423f24b8b96a |
| macOS | Apple Silicon | chainloop-darwin-arm64 | b39b516af2425cb8b4ad50ba71269045de9de7ef3bf1201f1a2104d8485e6246 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 8c37bf7d65429f2602d0fe80d0e179ef24f68f1bbf4d7adc5a278437298138dc |
| Windows | ARM64 | chainloop-windows-arm64.exe | 3730bf44ed509d3ada819423abb74181c6d37bfb20aa8511626d5d3dba567465 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.95.0
v1.95.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 58fcef7f4cfda7745e833af7ef459a902af082fee6165136852e234b01121590 |
| Linux | ARM64 | chainloop-linux-arm64 | 7a3405df8a48f8f24f209b1d7d7ddb1f03a8d586af322e9990c9efef1f3595ba |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 453af4c8d6b20b8825ada6ceaddcf3cf8415561cec0468d1eff23473822fd29c |
| macOS | Apple Silicon | chainloop-darwin-arm64 | abefa85465f805cde28271ca37c7731de789e695464740506e45251c65241b4a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 9cc2bc8c6e7f1ffa427eed4061814bca66cff39796f4ec532ae5b14b5fdb386a |
| Windows | ARM64 | chainloop-windows-arm64.exe | 8747bf0ee91a874f027cd196ea36a8df73f978df28760606825c3600a59877b5 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.95.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.94.5
v1.94.5
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | d8d597d4fe63368418dedf49f8aa85153a4805a4216b5750152facbc09065a02 |
| Linux | ARM64 | chainloop-linux-arm64 | 949065a094647496d27c61a494a169202a5c8c1977d3d72ffdb821079efc32d4 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 2f1fbed09de0f22db536c651fe93e908420079787a5e3914e0ebfe1e0bad60f4 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | a19766436c64fe9a252fe3a695a2a24c3d598fc837596d88ba985f67bed82e61 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | fb3433f3929ef87cdd5732ee4fa5827b2217f983a88151bfad1913a643bbbcc4 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 39ffeed0b75eabc320b532f00333e0af8ab9db7763477be081dc7f43588f5ca4 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.94.5
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.94.4
v1.94.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 682646168bdaff723ab80d0ff04d18a3ab87153f41f1447ca73905df5a2379e6 |
| Linux | ARM64 | chainloop-linux-arm64 | 9a8e006e07d86f46a3e3a5d2c2c0fb8b9ce9eb9040258bae73bce03646462460 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c6911e8233b656bd055e3e702bbf71a56cfaf8b12582a30573780c0ae15155b8 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 8d40fd302d123298a4e13a9f111dce5a8e9f09b8f4113d7afec2b5a468c906b8 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 35b5c337decd6e9a39acf0d9c2bad34cdfc621a3461c5cb40320f01975e9c2c6 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 8d56fb8904380533d345ace764c903ba6b3903692a17577ef7cad20c9c82696e |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.94.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.94.3
v1.94.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 5b50bd7695599a6c18accea9f22e58b5ad5201b6ea50375c346240aec262e84f |
| Linux | ARM64 | chainloop-linux-arm64 | b4f35f5b10c0e8a64f8503489c4bc63e0436403212bcb848da5575350e9174c6 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | ca36468ebe162faf5aec81d928c129e716f1b0eff1ad10f427a34aeca0769387 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 77df15621b5d69b3f8bedd0ede4ab084d02913e2a551ad38f91fa07b73430252 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 15a77d4be01f45d59717500d3dd018bef63d5c5079310f87a70f7e22f36c6628 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 777ec1e4c7e03604ebd8394c1603b8f4e031d999978331aa9554be0eeb398ba9 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.94.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.94.1
v1.94.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f1341f1146413e2cef68d92db6b63e6576e345d7406a1a75fe40f411aad2ab4c |
| Linux | ARM64 | chainloop-linux-arm64 | 95d1473ff012f2abb542c21bb26411e486d767ca4c72e2337f312792ad361f25 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 77c4fa24c07c79f8b9a51961807544dc5fc737b465f32b375eef2dffe25ca56e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 364acb41ac244be4d85405884864fd028b3bc857369b5e6de3fa4f9d59a1b5ba |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 05ef69aa44da6a60d8a9014db6232ca7363968b79c12ede004f16cf083834d19 |
| Windows | ARM64 | chainloop-windows-arm64.exe | b6939ca7e42db78c3f039aa21a858e77d4ce2e272adefe4761a6294bfb897ae5 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.94.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.94.0
v1.94.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | dc1c13edd917f8bff44f1e2ff8edb161e9b985dc9382e1db421bc31d318b9c50 |
| Linux | ARM64 | chainloop-linux-arm64 | e8bd7b775f0310d3fcf1589f99fe6f888e8f76da1360180cb63f713b4dda6a2e |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 56f9b78180b6b6fd67b692a5a48dd900b71d9f4052e707cc497f800f8dbd90d3 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 21fb953817b08dfaed3c9d412f464ae5dfaeca2cc4fda209fdb5bf3e0f5e9757 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 7e13fe2e8190ff2d817bc9bef0fd7e44b1f0e22f075abf336136cb409e839ef3 |
| Windows | ARM64 | chainloop-windows-arm64.exe | d8f6fb5259107c62c571d8c7ee9a64ba97cb3d86efe27ea972c2c13a6b4b6277 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.94.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.93.3
v1.93.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 0b3e130d03e062f7302e8c4dd26b1b8c241fe192889ee5fecf3317d6813517b4 |
| Linux | ARM64 | chainloop-linux-arm64 | 9e87e22128e3c1f42ca20737294c91111e4bb14bad14f34563b1a92de9db5848 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | f97053291e1ab54d329db6c8dc45f160ba84d0c139761beffbac3dbd89649c7e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 960d4aba4f3abdc19dda7e4e31f7869b1425fdd0f3ccd6357a4562678138b5be |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | bda53353b7de53a4643ae6a6f85bef39f2f17169f9f4269257184a53c9f5ba19 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 34040d9a99562d405dc0048612fd04f706672715bd1a72b257b28e1f05da1302 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.93.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.93.2
v1.93.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 6ddee8e992a80da14f99dddf6932312859d50950b7fae106665e088ccbafc602 |
| Linux | ARM64 | chainloop-linux-arm64 | 8e565824f996751b3a566a5dd8c176d098bc2df69da35a79ff4946362fa52f58 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | bcd5a521929103069c0fd34c03fdd99e98afc5f35de6bd78ae925134a432c996 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 14bb715cf1c9ca1ca3a6cb293275c0aaf7f2ddf5c7a9b18bc29d488849edce01 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 13c82a41c810a4a57ee41cf673174a38b75740f2a5bccd58c1fde3359f9b9e44 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 2aec01fe63580b8fc458d2b915cabf3d7310b6feca6425d0a3e99f2c7fa3c1de |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.93.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.93.1
v1.93.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f1bb0f2817fb905c9e37de6073d0e2d7262e0b96bc491822d9375dac2b238d2f |
| Linux | ARM64 | chainloop-linux-arm64 | 81ae973051af96a78b1d26dbfefa0a7ed8d119fe4115c4e6c6af66adf3934b9c |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | ed54a740d64ff01836cb5b65c53dbcf7aef34c85a9f649d647fe98f926bdc904 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 6a5ecb886d0e949b9abf57a8f0df5b2a47ea4507d4ac49ab05f0f2a3514bdeec |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 427ef3535c75e8a05727a1641c0beb688be23e6e4db7fb2cd95a678d3dd061f2 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 3a27afe8f276bb476fa1d6435f4753c18092a34773e5f66820593148d77ed195 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.93.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.93.0
v1.93.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 296085fe3309ad0cc30aad12b4315397faafb3d0cdf06da74756d04f4fd4e2c4 |
| Linux | ARM64 | chainloop-linux-arm64 | 8302749fe9fbd8fe539584bc0ac025cf51aa77de452ccc356d583cfd14e5f443 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | b1708f40d47e4a546665fb2e51703e6bc8ad0c1a6b805af1ac97a35aa3bce8c5 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e7dc9a041207a441fe7284e076315114ab0e7d41d1628aa592264ff19f647fcb |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 755ef043df8ccaed3d3381509e0c9ca2beb7ad19c5a129cca15a1074f48e85ad |
| Windows | ARM64 | chainloop-windows-arm64.exe | 412bfae502e9fbe39686df4eaab85538acfef078a5f68802ca28bb3d897398cb |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.93.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.92.0
v1.92.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 272c85514d67311a9aff96f4703e0c77d0b40a96246aac8cc3069636b1f714ef |
| Linux | ARM64 | chainloop-linux-arm64 | 4bc218bf94d56cf50c3a841dad2add3822ba6571b7c8a59205dee7e2e4b51706 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | bc83c170e20cad6ecf1e02f844c97fa8c1b38812284e627291e3930f601ba247 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 517561ffd0fac60f20c9ebf53577703dcb2ff775d5eba68c3c3d4dc81a007198 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 2206c77b7f5ec25e2c55af3e6337f2f4eeacfb659324d7d71fc545267a954081 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 1f235ba6a41a109e3adff44e02a76663c59b045a16cba44415b993d40c85d36f |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.92.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.91.0
v1.91.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | c7a2e420aa29817e22658666fed95b43fe053dbc39e686ccc3008bfda69119d1 |
| Linux | ARM64 | chainloop-linux-arm64 | 4fed31def8785eda5ca78c9f78d1c01a9be6bf7bb3f2a0c75a6bdd115c11aafc |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | a3d9f10a18d6ab9e60d4f66581d44071369c38ee3fb95968c3170fd9c38834a7 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | b6423b83d6556c8bc3dec0e7af61cc1f2d8931267896555ee386df185c9ee6e6 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 21ca6addcbec800235911427abf4e8f3c59df2b47ef2c03fa008df7c6f65936f |
| Windows | ARM64 | chainloop-windows-arm64.exe | 89ac8e16f52ef49519ba055edfe962f9ed4d6e552bd75dd7d36e1ecfa223048c |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.91.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.6
v1.90.6
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | cb0908f4ed546cafa51c6458175aa4e66af2ede22ed1ccb1b6348ffb2f70f05e |
| Linux | ARM64 | chainloop-linux-arm64 | dc8e55a534b64a090a5807a55309eb233404bc175609971b1822da4131625ae4 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 5ae1dbce4bae6ca3d13709c5feb2254d9152aeff83ca728b2ddc868a54729a73 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 5db497c61bb81f41cd2b166e7fb29dd815abbb4a83c27b84a694db760acde520 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 7deca991fbde3bb4a17609aaa5f3a1371a5eccacae6626a8015e809d2e59fcd0 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 830be654cd27e264f11ac391eb2f38caa9fe913dd7a4c4e6bdad24ab605f56d2 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.6
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.5
v1.90.5
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 5da5c6f7470e66e80cea9e8fabdad9ab76993e13ff716419d99ea5b8f10654ff |
| Linux | ARM64 | chainloop-linux-arm64 | 4066553d1211bc21738c81c5013cf5125268455040ebd08a0cd880b36bbbc313 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 947416c22b31f8597a930fd7d1cdae7146c3bfdf7b111c10a7a1ab5b32e61758 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7beb754f4efe4b22e927507497f320d362da44356a7fc556051b3d1d21f82457 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | b5bcb659fe39210cabf66ceb87b9dfb1b2028988f847113c99b278f7d452ef66 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 9de32a3c63eb076925593dae34b87a87674306a9168119ee747753a4c9de2ea9 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.5
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.4
v1.90.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f700958f434845968d60090cf86d910c5a3b2c2c243b1006da845ccbe96a9d3c |
| Linux | ARM64 | chainloop-linux-arm64 | 1d141099252feee0460bdeb9364bd59acb3c91786842ea84803a8ddbbf008b9c |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | fb173fbc5ecb1924adf15436e67d14d40e1f65e41b1e21a5f2bfc44a945480cf |
| macOS | Apple Silicon | chainloop-darwin-arm64 | c52f3e99abd184a85ad818bf31bf46508655952dbb0aff57678e64153614c634 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | cee322da4fe1331f035d71616e8615aa9aab003c639770925c49131298d93157 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 419633745760e3f96efd05e8afa1de14e6dbacdd4deb3300971b1e69f18ddf04 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.3
v1.90.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 04fe0b7844595ca88d7bac545fb1021b227a4f2fdfa8b9b7df8646250e3c06e3 |
| Linux | ARM64 | chainloop-linux-arm64 | 2395dd36b84b6d8791203cbf816adcdee4a0c3a234c65afd2c7fcd3f9b7ba7a4 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | ec5f1f5614c47c561c2fc19638d7ebb67e063350e66f21103d7e488a87b48584 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e362f6d75d55aa0d1fcc75a61c320cdbb41925ad66d7ab1ab783446c7c8e6ab7 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | dc0ad638d47d21167a1bddb9068c5de2990ba09371cb3e833a6a2a0de87df04d |
| Windows | ARM64 | chainloop-windows-arm64.exe | 850fa897a5c0cec83a40c9307e46a2495a54aa30d4bc1f715fc44367017eabf4 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.2
v1.90.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 802faae7ec882a0afcd31a7c33b7cc21407765091eb3ffa3cb594f1b92e37e38 |
| Linux | ARM64 | chainloop-linux-arm64 | 0dafc6b6f22f27e77f2f9592f88e5564c504d24bcf0a54a70ed836a8d59bd5b4 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 27a3fb725bad5be9f4ec83c4f51f263d25ebd5f447a7acde6acbb8ea81b5c145 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 51f05de6cbcdcc293e87b632f6924ae35f3f1eb43f7844dd0fadc76c4d66d36e |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 3d74e58923b35099d80a70060accdaba928131b669ebb53da0cfca8057d36264 |
| Windows | ARM64 | chainloop-windows-arm64.exe | bcc0d6b4a924207a9248d8e796199664c325c58db9f5cfad5fc3e7a5c2f8bd60 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.1
v1.90.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f5bfe74350758daa0f7fcd0b4b5d34f7561a54ee46ed7f2bfe2e602183f89a60 |
| Linux | ARM64 | chainloop-linux-arm64 | 2265eb219a674c7d4c81e5dd91195afc06b96a57f85b94f64b4a4ba8fb524aa5 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | b576fdd651e02d0f9e0969788cd2b405c122f03117ca40f03f173bfaba6d7754 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | ca477e2afbbe2c8488653a184fb4ac20a8d06a939d1ca5c22ac223d42d3eba9b |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 7f42b4e83e9cc03aada8cc645ee311bdfecb27994819b0632b1c88ea4074d66a |
| Windows | ARM64 | chainloop-windows-arm64.exe | 4318aaea59d4eb8aa96f03d75d520341206d3deef6275462b1c4e3383d668c10 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.90.0
v1.90.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 34f1a1ac189d7b3eeaff4b9fd669c806f4f7cddf95e92087ec6a382b253007b1 |
| Linux | ARM64 | chainloop-linux-arm64 | 6660f64fb170e4502777b726148f62fb797b4127a2b636f9112984ea0d36fd60 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 81dec5662f435b8c93dd2ae53f6f864451693902def27600b3b5757c6931ba7a |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 396241942f4ecbe021772dd6bb2a4580a7f5631104f644b8107e1d7373bc67a7 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 276ba3a33d6b6e9559b8afae5ff0ca900dcacaafb7f1fe9f4219565ee8bc5847 |
| Windows | ARM64 | chainloop-windows-arm64.exe | fef82536eea04c99ce5b0630ea48e11672fbe7ada01911f24047e48122ce678b |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.90.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.89.1
v1.89.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 121a78e3dd13e5f3c088f64cfac14f7e1a00e3937923d2ac0613a4a1474e6fbc |
| Linux | ARM64 | chainloop-linux-arm64 | 6d6435be2383459283cb1bfe8b87bba63456e4dde8ba34d584789a4571d69cc9 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 65629458205970c6b632fd7d79ebc8eed646bba4db33f07300d61e6a0dcbe047 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7f18fb43946c874059c46eebe01abc29b2bb434c9657558b99bc64650bf90d8e |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | c413fce321641d87295943d04d6fa14006b516a7a0b63b5fd0f65a999139cddd |
| Windows | ARM64 | chainloop-windows-arm64.exe | e719c86be9f34ee811f7b3478b177900829b7d1c0b15b78962e1a2d020326243 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.89.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.89.0
v1.89.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f7198796b8becc23914685184e22fa4e5f42e61824dfd84befdad4fa0e3f3d07 |
| Linux | ARM64 | chainloop-linux-arm64 | 60f146fe1fd8b8b25de4e11854baa01f7cf6ad8c54b9b6c5e6f06dd35ea2a45f |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 92ca5a5f68a3797a789e448e7aadbbed7332ad74daca0e9969f59a20fafad30e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | af4a6f0153a250601e3e3a4bb92c35917eb43d442bb657285bbbe31046b680cf |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | c78ddd1fad35d83357aedddbdd332318872709167c0cd6ed5ab7eb474366a7b5 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 041780cf2576a48dd0ef9f19a8f5b61667ec6c06e07e28a0b0997075a11d3518 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.89.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.11
v1.88.11
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 8f53bf6a8c3bc76f80826179e4bfff03e9f4499a0b14c3603ebac7a3132cd105 |
| Linux | ARM64 | chainloop-linux-arm64 | 8f871a1f2b33f94bc0a599c9f8e0e092960b2f7910cd30697df789af947ae588 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 982984bc9d276802cd7fba8a48742107ffa946a89aa617809c61db66019d2590 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | ce740348a6940f74e3d6952bcd608405b094d39daacf862bd821fe50cfecbd8f |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 9685caecb81ccdea4640cadc6f4074950bd6fd0847755d297c250dfb22911b6c |
| Windows | ARM64 | chainloop-windows-arm64.exe | b5f45d602931f98adec4ba72d92a03acc1eda51ae5a3f62d053fa7342a71077a |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.11
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.10
v1.88.10
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 4ec7d9201bc6bf8baf07c0d550b8cbac0fe4adf013004103d4b0f0d667aa04d4 |
| Linux | ARM64 | chainloop-linux-arm64 | 86b486bde4c1cac209ccdffc14a30b1c1b9aa5f49e2681d2e2a0ef265b3ec67a |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 6ef05f8a9739c7c0edcb10c8ef64e76f3c6df0974d525790a593e63b7971298f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | bd368ca6081ae26ce1346af900625c3c25b85fe2dd081f528130b10a41b7073d |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | f14418d9e46efe39df4ca0cde4e9e9c6edf1172bb207d0f7e07950df71f569a5 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 2fcb05dd79b7925064ea054a4c72548961b9ed3b1a320145fcb1103f68042958 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.10
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.9
v1.88.9
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 19fab1f1b92010694d03da79cb150de7a665e0aada03c4f21f4acbeb065d52ed |
| Linux | ARM64 | chainloop-linux-arm64 | 70c6d2e38b3fbcb5b17eb698f46ac8f6182c3ae58ad22842f5ea649f361bf0bf |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | fa186243073992754d2044c53a538a269e5a1d0205ee433f90505ccc1cddcf88 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | bf9174ec5b1547542112146e7c092c32c4da97decba6342bfe392a34bab12b00 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 516fb7bd76f57f609d5e359fa97e3b3f75c3978c96d818fa23b411a8decce800 |
| Windows | ARM64 | chainloop-windows-arm64.exe | d0a032fe66a1774dc656bf1b691b0be6b580e43ee022e019de13babaf11f8f0d |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.9
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.8
v1.88.8
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | c8b74751faf84d8d585cc80c31a7300c855c276984b269af2561f3a45f2e9d5f |
| Linux | ARM64 | chainloop-linux-arm64 | a02e702e9279ca68113e46c187c2a0c3c5a4058dcf34b4ef42d3feacda3cbb67 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | e21c209bb023b8a6285f3908475078c37b8446da7e384011fce8a27ea59ee1b6 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 4010be3917ad9b2d9c5f8039ac3d79e26a6bbff2d41075c5c62d3f5df63f9684 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 7b0a5292a550ff5fd41138f4ab375a463599811a4c208aca967eac922fc5f3da |
| Windows | ARM64 | chainloop-windows-arm64.exe | 72fe943dd02db8827af091f4862aa72bebab2fc0ced827ef4cd4c09aa313b8c7 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.8
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.7
v1.88.7
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | cc29d61d52fb6a60e715ca1a1316a17cead11b3533134afc0c00e4770012ae3f |
| Linux | ARM64 | chainloop-linux-arm64 | 17bd3cd2c135ba2bdc8b60df2481dbbd12714a875737c77021ed029a31f1dca0 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 277c52b79b7dfdfbbd1b0715a7e358043248bdcccda203c93dfa7f7fda1b2c88 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 93b16ea4f98b62b15e3cb583d725cbd2d3a4a8160ed180e4b6c3d7cf11efd393 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | b3f8a95be2d6fef3698bd3a462fe9620e0a04db3d9e7aa0124d4608ba02a9a24 |
| Windows | ARM64 | chainloop-windows-arm64.exe | ca895eccaeae9d07c4d161f3a8bf2c2da8edd5ff9055944c6365248fec58fb57 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.7
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.6
v1.88.6
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 02828d03e03b50632f58af538caa519d911611fd9cb5f60542a8e100db84e40c |
| Linux | ARM64 | chainloop-linux-arm64 | 0a1f2b8bd67366ea8983418fdb8eddda120d7e1c4d48fce3467ca19d10ade081 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 1e8893be229eaf040cc09cf81b278206e210818c8516c4515cc49aa38c0a9f04 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 71bdfb4f46c350f698ab203ae1e52d6632aa0690246704ab1714da0d9266a718 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 48aea1269c679de4f89c1a486a97a91409ea463d98267759383c278ab7ebc1b0 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 24c10ac5c7c5f6c59efb4fc88ad3bed46e8849fed6efcdb1f48526fb8e878a3e |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.6
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.5
v1.88.5
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 984ef4584d4911027aec3f526abe2616978612dea7d0c1551713b4465b6bacbb |
| Linux | ARM64 | chainloop-linux-arm64 | dcffefcdbfd8fe8e2d46a2ccb91481077680ce120191b4836ba3518f2a2cb83a |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | f5df65502d6f06e5a8c3cedcb0775ef56d54449c6d9dd9b4f2c555b22ae6a298 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | c5b505ec496e9c9611bd5b8ff75fdb212556e929557f36f10468634288b8da2c |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 1aea679c3aab0a7f330909fe607e2bb8096b25c6d19e389491991ffeed27a412 |
| Windows | ARM64 | chainloop-windows-arm64.exe | caf4f621b98fb6cc2899ed52ffc5a8578c23fc3c2c445ddafaf275ffd417c396 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.5
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.4
v1.88.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 310a835e632e2aefc7003f2c26b06ecd0a3c6d0c6a38262cb836342d1a3d4394 |
| Linux | ARM64 | chainloop-linux-arm64 | 05af9700fb85e0d65bfe859dac35461349523634ad430b845a9727baac007b5f |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 0a5beea5a81e2341aa439a5ccf318ada6b61b8a64510288956eea8bf593a097d |
| macOS | Apple Silicon | chainloop-darwin-arm64 | c057ca9adbec170d87f3394bb688b6ef42289f5fd56a37e75aeeb9a54d0abae9 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 52bdcecf320c7f20f0a07b0e6cbf5652611e8cda4313e8b59b7f6e01f40d94f5 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 3f7461440cf9a6da9c7d7f6e2bfa3dba26949869f2c92f43bb1967fbdbe6938a |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.3
v1.88.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | c1c36153706f2471dee7ba688dd4af2cd316c7ad60fb67ca15bdb46ccc21f1be |
| Linux | ARM64 | chainloop-linux-arm64 | 37e22b9c3e149efa62a6e49b9598367e3a76c62002558986651e82c9d0fa0b87 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 801f9d1ff125623dbc36097f214dc34edede5bc9ea4c10f37f0f4c632264f62a |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 9e7557867dee6dd31363122f8f5d56a9814c35e6178e684dfeab4daf6170ca36 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 1ae1a331a8255ab3deed461bd6b4dc2b5fe793746c45fc6443f1886b493b0ff6 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 84b16e252b5198d9cc1a1eacc41c2e1a426f0380aca16e474f70b7d08aa78c06 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.2
v1.88.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | b8fe3d6fc5574d9d140bd03063f24b5db576c74f21c15de6656cfd9e847c8d09 |
| Linux | ARM64 | chainloop-linux-arm64 | 7d932c4225e0150f76bfec5d4e1f01302353c5a88a4379cebdd3d1f9033c6641 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | b21badce5f19154c6872fdd1d1405534497733c7527ccedff591584fc3a73f0e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 49e1d83ae95c0838648c4ca50d2e5c1c0d2e18dd349bbb20e062d47ec135498b |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 0ed22e9ffc4f39bfb1660d35f66ec12e0e3e3fb2b34e63279afb67c1ef02d956 |
| Windows | ARM64 | chainloop-windows-arm64.exe | b8c1d80b7926e88ba16c77d326d076d1028866d208e212017f7b17ca7e8193e8 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.1
v1.88.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | b25300b57866436a408adee3fb68955dc6de90aefb43a4b03ed50f6dd8474226 |
| Linux | ARM64 | chainloop-linux-arm64 | c3e67bcb14c99ec442b5a2ebf5a7780cd1b81582256d45aadc3299a6c4a46b24 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | b6714a2bcaec6ab3cdd3931d4d99aca2dfcbf8744538e37054700c4a04aa088b |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 4eae9295739ba760dfe6c6c6e0f15d133b35187ce256a946349efbcf67117c9d |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 4e026b5c57be4618efcea2f8094e9f2bc5363e6e9a93d973f36e2c143ff979ef |
| Windows | ARM64 | chainloop-windows-arm64.exe | 31f4774103b7b60be1de851da11d54256c01a04c898319ce169a07c2067ce238 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.88.0
v1.88.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | dad37156910f1de5ff1b9a24c9ae98006e7c6bc6329b4bbc42b61cd0506da79c |
| Linux | ARM64 | chainloop-linux-arm64 | bc324a130d72e955c69fd1663b9b1802da23508d84b7ed21ee5b2cf5b55a310c |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 90398486045edea283e1537243657ea2bc9a6ea27e26c147077392061f713929 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | bec4e2b3a317a7162f00db99ad4f558b0821c3a193b316312a543d2227dd1817 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 06255849fbddf9556b13a01715f99661ca9d084faaddf6e13d96e988a08b5d20 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 814d5c140c84f2152abb8fbdad8215799a4667741a9278265da31646b3c3a714 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.88.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.87.4
v1.87.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | a9b9ca0939b10d904c10a334111964a6fb3a371e414deead717de4f2fc0e5c0c |
| Linux | ARM64 | chainloop-linux-arm64 | 602af1cdce8c2d59a533aab34b1a85eb009526b4a94cb58f199846984242fd91 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 93c8db6de3913ed3f8bdbaa7a7bd40b671d699a324a8fa3df6a05cdf3882c48d |
| macOS | Apple Silicon | chainloop-darwin-arm64 | bfebd2a5db120a8d2850b25f75077990b46d381d176b232a9ceb51a180bfc97a |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 9ec69144b9361a8750a2515dd592a184572b6c5a2c7cd7738ad9f379c221f2be |
| Windows | ARM64 | chainloop-windows-arm64.exe | d816cad4344a905164542fce0dca2e545355afab452ac723583c11c17d23be1a |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.87.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.87.3
v1.87.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 362f22bf5569c781a829e67b83d368373ff98f67bb7e5f71cc849f4ceb4a5421 |
| Linux | ARM64 | chainloop-linux-arm64 | 05481b6e451071eea6ee66fcf6be6c70808ec3b52b6ca82ed74c906a53c1cef8 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | a5b98c999478ea2f7b5a9446bae94d49c054a56e500d67c3acf2ab30a5a8bf4d |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 29d82b78b1da19f4973e447193d481e37611d1baaec2652762e98bd89c3bebc3 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 2c107a0501036ab6aefeb3efda3225af62293ca1505d190d7b927bf63699afa7 |
| Windows | ARM64 | chainloop-windows-arm64.exe | e973ae4dcd117bdbc2a2c040bb027f2c55684412b5a7e5e780280c62afd7d35e |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.87.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.87.2
v1.87.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | a14243c5bc32c749c08b5faf0c1ca804822b78e0d3690b0c3455bc3bb69696c4 |
| Linux | ARM64 | chainloop-linux-arm64 | 9165f1bc58f3e762ef0816fa92ae84592c7e7a473a8935f161684215620ff4cb |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 0fdb54c8d836ebaa0bcb6142d7ff567a77b0db5b115ed645a77f20d245a426e9 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e30da91c457c9627152c2626a4cefbd8e2912b2da593feabc9cbfcaebf6577b7 |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | 1726189f7921d606e18eec1a9a59420a6d79f1212f93d8c8798a69a30d71584f |
| Windows | ARM64 | chainloop-windows-arm64.exe | 8e241f82bfa641b54b2cf9098fa75feb7ae9b2bc11f4416093e981a0a1eb5c23 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.87.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.87.1
v1.87.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | afbc4ec7e313ec5430ae660ad2c0441491e4fcc828ddb9deed1f1553e2b8a65a |
| Linux | ARM64 | chainloop-linux-arm64 | f30283e57a4656981e5b573811275a59f98d0c61834d0f6bb3c3d46dbf8e46d3 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 4c2da6da7a8e02c4b2e6d6cfbd19329ee5d02f677ab09982e422601f0cb96845 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 8e748281c407807887d05ca89c878b00b9e19d218da8ded1fd7a99745112913f |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | f29d496ba301b351c0dccdd3f817131b6dda6ae99d779b20a56d8375490e509f |
| Windows | ARM64 | chainloop-windows-arm64.exe | c8d2f2b529e918290eb3cfa03cedea9e9c5583f45d5dc0acee987d5501897838 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.87.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.87.0
v1.87.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 05594a4ec025f20c3d34292148d79e68bd6c814f915aff60ba29212b1e521a13 |
| Linux | ARM64 | chainloop-linux-arm64 | 7f7c1021b8d4a897a7056bb13098fcadc9b14ac37000bbca0d33031fc6b8c497 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9584599790c138d44d1dc96fd82dcd6f0c4047aa3a3a6b34025766ea778b6936 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | cb7ee35f834fa7627415e64902936b4e670d5d5d1f4bf7f287a47aef6304344e |
| Windows | Intel (amd64) | chainloop-windows-amd64.exe | d1158e51fb64155325f0d1bc50915342094e1d2e0072b27378953a3962fcce48 |
| Windows | ARM64 | chainloop-windows-arm64.exe | 75469c7130008408a53095695fb7ba8660ba720bc1f0590f41b19656fdf516eb |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.87.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.86.0
v1.86.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 0b990c61f65e42f8eba3a646a73d18f9fc0becb31228de947ef542f0c1b3b63a |
| Linux | ARM64 | chainloop-linux-arm64 | e5dceeb6bfc112383c63d461eac1eefeec61d33483cd70e441192150760492d5 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | b95ca45effca37cf4c1b089801c5a16d16678c35712812363ec6865144f8a03f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | d9730858fc26532a64be9916e8d8c8bf5100ce8c88eec36f7740836161a1489c |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.86.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.85.2
v1.85.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 90e3baec28e5a0806ad14b84b44b7cd6e4aa01ad3a563795a9133af562dd6185 |
| Linux | ARM64 | chainloop-linux-arm64 | b06ab29b94bc139b01c28be5e2d2f833954d66c46fead21ba4dbd76aa956e9be |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 123c49a90938f40b7eb32351d51840b7fc46d2735e0bbb46d480560c4a34e695 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7e5e08c0d7182a6c8b818f2c2f371924b0cbdf8f1ed12bf87a554eb4b453f95b |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.85.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.85.0
v1.85.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 31c53ca9b6cc4b5b69e9703fb87c24b41786f7347e78e4e866b6bf5887354946 |
| Linux | ARM64 | chainloop-linux-arm64 | 8e7658658bf53fbc700b38c350dc4d6596cc30d31e4db806543d48cb245ecddc |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 112ec95c934f00945691ea6c9b180f4a4786d70fc81bb59733e54ddb773eb91e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 4c90a834553fa5b266b4c68fe8041a16112a8090fa76c2a1a069f7ea243eb5c8 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.85.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.84.2
v1.84.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 0151be99df69c0e709f1459a20602501de739d97e23255193350bb2430417ed3 |
| Linux | ARM64 | chainloop-linux-arm64 | dfdfaec135c171958fed001362d845fcba9fb7fea2b2122684373ab40bc8765a |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | dea7416c9582c58ce6e24b6435a05b2655325498b615a8347a71cf0da9680afc |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 1175c5ea61e978a7c9ee2396f43792b486109b4dcbb6ffe743c96b64c35d1914 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.84.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.84.1
v1.84.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 83098c194a49a566617815880c4cbfaba229a7134290197b06bf2cda0602bad6 |
| Linux | ARM64 | chainloop-linux-arm64 | c1b179aaef6fc5d9723e8f9768215b3536c27af00bd8bd9a7eb7b834916e0e4f |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | afcac8a8d338a1572305d6b3b8a780330894ca68f7eec21bc1ccb09a7701979b |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 75cce8fd379cfb27103d31683457ad9d774e36b1629b14c0ec04f7b07a3d6743 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.84.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.83.2
v1.83.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f8e40f197a0137cf77f107b0e7ce7e9b47b9180a6ea92ac30cab49044bd67717 |
| Linux | ARM64 | chainloop-linux-arm64 | dcc6c9dd31aa8b6a029e1a4829aae9df1f03ffadfb84ff352adc33363c161506 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c4d2e977b90b5522fb591cffb79b7980d8163c21d893eeb3cf7ee45cd19c3aa9 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 1b59544bab9f4ba6064e783d7e4dd165e70e9adc58d5c6f7d1a9d641fb4e8ba4 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.83.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.83.1
v1.83.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | dbafbf5fe00e932ed4162ba3dfce005c7433a5785f91c09ba6d83123207f6a58 |
| Linux | ARM64 | chainloop-linux-arm64 | 751eb41a6d3b7fe42193f8f61ed84fb15f929ab8c2a1913771ef2b9f1cd7c379 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 74f6ee85380e06e77d6b50fcd90c5ac5a8be3ca24d040fce6075e2c251470c18 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | bcf7e16cfd802fff8e9897050cfbeca7e2c26bda7b80ccde61444280e7921d79 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.83.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.83.0
v1.83.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 31c7682283b4ea7ed19f2965675f1c5e65c19698375370bfaa36f2abb43ec62d |
| Linux | ARM64 | chainloop-linux-arm64 | 87b85b35ca821642c6eff3c09aa658ef35175a68456d8c1c4e0bdff86ee65f23 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 45e0c1c71c8c792e0872951f36f70f4f7f67f990c701f8c76c1aa8aa1789d664 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | b3bf5d38d5bc583e75fded104fceb4c69b952350db1a7c3e97879f4b8a6a5dc3 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.83.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.82.1
v1.82.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 514a1f5fa9830f69a9f2b850a28a92bec4e531a666b607220054a97610316033 |
| Linux | ARM64 | chainloop-linux-arm64 | a7a2b4527527d997120379fd0c036dbe2efa4d431521cc22f2e62cc644be8194 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 8d633ca7ab28e7d223f5444ab2bf73b45ca771cc35fe0abff0af64508328cf5b |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 1346eed124025d7d92196734e85ec326210e718c6ffb497f2e8274e251cd0611 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.82.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.82.0
v1.82.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 7f9972d1570426a6536e9251d1117fb2d560e0502f7362d3b85a92dcc38d0f8b |
| Linux | ARM64 | chainloop-linux-arm64 | 2c2ef85197ff53a2ba2be924137bea7c435c65c940128723bea36463ffa859c4 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 4b6d284a575082e1b0c9690d49b6919d2d75acba322756b9fc14d146254c7f87 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 589c43c7ef732b40f077cc75ecf4353ecafec392302f2c2e2678448f693f0e68 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.82.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.81.2
v1.81.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 300b9422a1ae90ddae69d2ff31f550c7f021576ad5bbbf44b1c2cd8b2cbf7260 |
| Linux | ARM64 | chainloop-linux-arm64 | 4e707a2caa8ca5c15cd2d22eddc66849b4d7c3136ceabe980eeeb423ffa2022f |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 343183f4d0cf3a459b8da28706969ed4b4925163c3dd19de339190133b01f376 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | f20b26c67513b037d1fb9e9b1b51fa508e5ca555dc521e973cff982eaac9d0f5 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.81.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob --bundle=checksums.txt.sigstore.json --certificate-oidc-issuer="https://token.actions.githubusercontent.com" --certificate-identity-regexp="^https://github.com/chainloop-dev/platform/.github/workflows/release_backend.yml@" checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.81.1
v1.81.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | e61200bc47fd9587baf3f3683bda02a9ea442da02b3546b37a574fce724a204b |
| Linux | ARM64 | chainloop-linux-arm64 | 3eda6c3e4631d1aa060a795530497a09ce047fe514ca4d9520b3385a63e42dec |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9b71653cff5a2d086be0882bee4aad68f721047593397788b9e16a0f9a1ad179 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7119fca6f9a418c375e7c8be72e5de4371467d8f37d079b189ac7c95eb7efba4 |
checksums.txt · signature bundle · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.81.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Download the signature bundle and confirm the manifest itself came from Chainloop's release pipeline
curl -fsSLO "$BASE/checksums.txt.sigstore.json"
cosign verify-blob \
--bundle=checksums.txt.sigstore.json \
--certificate-oidc-issuer="https://token.actions.githubusercontent.com" \
--certificate-identity-regexp="^https://github.com/chainloop-dev/platform/\.github/workflows/release_backend\.yml@" \
checksums.txt
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.81.0
v1.81.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 82a5c0d06c7e86327ca116557432c3fa45f6fea246851fce44e7b879718e2b1d |
| Linux | ARM64 | chainloop-linux-arm64 | 1513dc3f302200710d8277d35cdc32ae5d8dafbdbeec842034df070ba2dd8885 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 0a61b1c53f9ca4c32e53e83bdfaba05f1dd8c72c45403d9f18029248c36a0ee5 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 190f9f6144a23b035618072733aad932cab1d1a837e978d104f9d0a8fd7daeb4 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.81.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.80.0
v1.80.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 52dab2005c9b28fc9e6a9f8e487486f154c0619e7462e295bb27b7bc8d12a1b5 |
| Linux | ARM64 | chainloop-linux-arm64 | 9c38eb1eb299056728c78c383987a8f106516ab3e278685234eb2cf55f69372c |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c6b4481bbfaf8a167c67ae5b48a51603053a4b490688d43a7996f7407155b61f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | f14ba972673ebcb04a5dedbe5aecffeef5fbe42443cca26cf76dcdb51dd93867 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.80.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.79.4
v1.79.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 3757313c8bd06dcbb893bc1cf0de5418389322559ea874813f2c4d23dee6aedc |
| Linux | ARM64 | chainloop-linux-arm64 | 537012d4249a1f67094e6ec2717f97476a18a3b6e9f91e69c4b84a1cf7f54088 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | f76dcbcf68ccc425ff6a7e8c8407dfe30c3783a54ac6616c56cbb787ac0c432b |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 99cba5b5ff85e65fae177dc4d1e2b59c71c3a9b2e3356425149603f1f9c59817 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.79.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.79.3
v1.79.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 1b8f9857b07ae086e234abbdad2ca2d6cff7073e7e2a5a6815514664c7ccb2ad |
| Linux | ARM64 | chainloop-linux-arm64 | 626a58737a9a3f5096cbe1d46de56d2f337153a70236e354c72ee8a6c5ebaccc |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | db6889b1f8718f9785b9d67a7a1581e3aed3ed82da796649f9060216e2e4bb1c |
| macOS | Apple Silicon | chainloop-darwin-arm64 | c387ef1fce8a54f4df87a033c5ea03bf908d22c1f1fbe9dbd86e2aff55addd16 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.79.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.79.2
v1.79.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 9e9720bd3f8f6cc500b40a55314d8cb45bc1e4d75a550847cd389392b4bdb92a |
| Linux | ARM64 | chainloop-linux-arm64 | 20ac37fb329655b00960101b152a2e5f93f25caccbb12e36b7b19ef90dca2247 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 470f431afde3abceceb3ebca5a108f7ce6910f554bdbe96ec3f79d7778cf67e7 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 30d9c2ae004acb8bae8be1ac9cfbd324830220a841fcd6b55de8f9bdc68cd253 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.79.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.79.1
v1.79.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | cd836ca5ca347355dc53add9b9e1ce17985caec5d29d8ea0bfbeef961b5e437c |
| Linux | ARM64 | chainloop-linux-arm64 | 7aa12d4f94241df8bb64de31399b156513013a17c937dbe6a922405acc577525 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 957682433e2facb0443fff7e9fc8b32902145553a80c6215a4e899a40f70ee96 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | b1dedd04cb470de1788f1eebe9b81ad5ecb5318be74d2d3b8b0aaaf633db5c48 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.79.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.78.0
v1.78.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | ca81ffd9ff3c1b8d8578ee75eaf41e353137bd8c80960acb7647579528eefc2a |
| Linux | ARM64 | chainloop-linux-arm64 | 30f50b7bf33ba7638c410f92b1521f3b6079464a366fda8e5f6ed2a77dbd84ba |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | b6351e4f0f8e014b6479482f4280a39486f462f4d7e528f1e201890444351bb8 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | a4f999b088475d8076262997c25c8597934a2cf1e3011a5ccb4528090f1d84a9 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.78.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.8
v1.77.8
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 6b650621b3a7f2c1f4fcdb17416ac0834946c719462e84265b9f972e99ec77f4 |
| Linux | ARM64 | chainloop-linux-arm64 | 55800ab5867f9670956fa03b27249320faae3aa39a03fd85c283eeab565d5fda |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | c6dd3f5be0094b7561822ae8d5cffd6eb3200d4ccf3495f49773a960a40b634e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 87a4c80e61f162580d3c1ca337fb3168f6c7af27a749b5f82138b2f6c25ac5ce |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.8
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.7
v1.77.7
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f0240db3a89c4aac7236ce6afd81d16a93fd5e6f1b88f3baefa618b83e1312c4 |
| Linux | ARM64 | chainloop-linux-arm64 | df6b29cd03ac63436920fc25ff1494649b52259344738db4616236f60c7e05a8 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 69b63242e72a3ae2b68cc8c22c9849a0afd547a92e4669f4a0cfb6547f6e00f0 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | b54a21756e4cd7bf3b556736b58dd638ecda9deef5a558db1c33e2f580bac6b8 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.7
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.6
v1.77.6
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 21e98926bbd2a3d29683f7ee8623b93cca29d11d9633c2a9684dca0deaccc3aa |
| Linux | ARM64 | chainloop-linux-arm64 | 0b26372fb89a3bfb5e94e8db0b305695e545e9369f442a26fe0732a16c578a2c |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 328a97c52665d7ae5a3391278f6cc9bf26de38430258928f58819384a8722027 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | d20500b922323626fdfd21178ccc06ff23e02df2ac9c4a8e690b143c21e68545 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.6
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.4
v1.77.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 65b783560c78f9a66074a42c756a0c7f834535194fae8fbe784db5eb61649146 |
| Linux | ARM64 | chainloop-linux-arm64 | 3e5ad838ad896e193baf289a247ac7547419b245b31a656b2b4e53ab5bcf0e3d |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 15259d8df575b390a5b2b5e0989f88b1f8679b4d41e96e9caa69bb4dda0debda |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 27149a07fd7670771f197b965837b0471d7239259b87695d46a840314c761c67 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.2
v1.77.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 960bea7ef536970bf2320e60b08b63bf5c0574cf32e02146a79dcc3d64aa9cf9 |
| Linux | ARM64 | chainloop-linux-arm64 | b55af5e8889164618936667c8272059d292f73443fc661d5e11185c721801347 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | df5d185dc229c05452a3fe7f42eb2fd4c8b320f802d67b817836407cf0f7a2a0 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | b782e9c03010d2f1cc871dc656922e27ec52c3a3a11cb64d0dfa7ce59dea9760 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.1
v1.77.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 9f9ceaa5c19dd3221ca23220ac22f968d77265fe914d13d11f8c553865e60858 |
| Linux | ARM64 | chainloop-linux-arm64 | 4d9bcfdd2f8933219f1f64b848cdaab7722f34a588cd16155136b76f48c0e2b7 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 48b3de7905362624a90aaa6424c49fbd54bb59777a6eee5e51cd4fd5516ca6c6 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 6a2e7c9c5980b69c342ecabceb582fd7b33b13d362d69f71d2b6929d47c7bbb0 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.77.0
v1.77.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 99b189c3f2fa135fc22d242497dcc6ca37f4dca1e28aaf5f90f6f535f9264684 |
| Linux | ARM64 | chainloop-linux-arm64 | f7c7d0911f81a78a4191928a7d948453fe3b3dcc06eeb850604489c04701f153 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 4fc28e9d7a26095ec219c2d9bcdb0ef39acae9a0120a542bd8a1dbf14546e3f1 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e86bb44a1b2407df71ebd9a775a6f5a5de770e1182dc107549bcb855899eca60 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.77.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.76.5
v1.76.5
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 0b78bc6d840e4c9d2987219af784a211fbf5df2bb84dcc54aad8b61b24f2a3b7 |
| Linux | ARM64 | chainloop-linux-arm64 | 075aca72dd9c361ecb3c7689cd93f885f7bb9c0edec0dc7932b32b4e561f8106 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 7598c591d6a9502a7f1db67d2f66f63f369890f9fc2325f116dd335c053a8a2f |
| macOS | Apple Silicon | chainloop-darwin-arm64 | efb046ae23dc9e66e4738382a245a2a59a50399d20bae0eb17dab77df35896e2 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.76.5
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.76.4
v1.76.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 989bdf986e7350ec3b96e5b696291b68bf560c448670533d2e7946cf376933c7 |
| Linux | ARM64 | chainloop-linux-arm64 | e6d38023d84695b9cd47a022e1a8e080c868abe0031784ea2828921070d98cb3 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | d0ec7374c088e9a0689a919efb6c9277e8c0f37689b234495682c2d5766c95c5 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 01d126711b14e19f8ee5765615dece574263ef5e65a17598d5894a8a40b58d93 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.76.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.76.3
v1.76.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 998c674c39704601e4fcc3c2f7e8eb928b8bcd44ad36da66cb50fb52f1f92146 |
| Linux | ARM64 | chainloop-linux-arm64 | 7bc7208257ca1b2c63c1b22121b991550a945644844dfe77eb79a38c9ecd55ac |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | a3627e054c92100fc268ab1a964a1f2724cae4a46b3514ab56f2aa7cd968df4a |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 5d2a9f91b3ad9c662d0a510ca77b9eab58540aab47e5a99070aaa9f90ce43886 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.76.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.76.2
v1.76.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | e4d2788abeeea0e835af06deb9028accff29beb432a09353e403339a0aafd072 |
| Linux | ARM64 | chainloop-linux-arm64 | 1c2c40e365700768b804c5f4d3000217fc80dbf839203fe907576ef4ea1f441e |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 0c88e20c3920a31741d771451ae1d71b9ff478eafad263cbdf9d5b22674d7523 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 084020f7dfd064d386f3395a0c06a75f82de93bfe5aafa8d4998833b98c74e0d |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.76.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.76.1
v1.76.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 600538157376d7f0bb72fcf238cbb15be4b65b041c094b623ad0189cc6396512 |
| Linux | ARM64 | chainloop-linux-arm64 | ba6f023b431f3a0e302914b3f40f8cbda2c1ee91fccf9b095ce1f4a0cd8fbe7c |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 661935f0a14c5da312b91b2650d7cdfa548255c909b538b53f7427d8d74f9410 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | be55c18f0783630eda24fcb0488390010b71844add09b6094bf8860845e74e35 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.76.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.75.4
v1.75.4
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | f1faba042467752683ef35c6e314c6fad393c145c4dd6e57cd21ecbd56379aff |
| Linux | ARM64 | chainloop-linux-arm64 | 91479275a96530bc31730b061d9270e91a5a07ca3dc3a71f81143d06539cfb0d |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 897d49f22a3a195e29cb208943d9347caa99a117363a412df059152f3c44b7d1 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 480d8eaa34c7b0af205b14bf734ad549721c8e73146d3fcfe2ce90b6ec9ded4b |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.75.4
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.75.3
v1.75.3
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | dfb8679fe9d716400a010895b9ff0c464ba38cec25d1be6f76a7538199bae67e |
| Linux | ARM64 | chainloop-linux-arm64 | 89a6803280ab032b5afdae48c5813a19bd04b220a0aec13f03ca92bcd9314616 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9b694b4efba85795b2069ce07d4b7b43e9515dfcd60f1d59c8cf70e626df487e |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 1719ea1c2609a0d76502adab97e271f074edc25cef3a99696b7dca82662b8df1 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.75.3
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.75.2
v1.75.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 8a9d57ad70268164c5654c068330036ac2f2de7e04af7f816bd1575731b5f68c |
| Linux | ARM64 | chainloop-linux-arm64 | e36550ce59f3d3a8e4a6503c91a75c1c3b31c0ccc843e2b294240e4a2758a794 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 5521b87df76bac5944b3875a066bb5fd37dd64733ce1633c82d3ea91bfeadf21 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 2fa6e4c73b0456e213370c5308d2ccf012253e34badfe44a08f1e11361c6c5af |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.75.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.75.1
v1.75.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | a6a1e4438e3a0f9a66ac471bee85bd4abb70f5d40c2c22e224e44454aa9da372 |
| Linux | ARM64 | chainloop-linux-arm64 | 82a121782f63f0560447b120670a1da55cda27d158eae8c758242bce0ff7bb46 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 161ee05bfc118b3f02227f5a07ff0590941d3dbc79a75ef816cab2add0846570 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | be5243ad906f14f7a24152b1dd03d4ffc467906858ebe6a0efcf90250f36f8f9 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.75.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.75.0
v1.75.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | c985fd3213a758257e22fa062bd1b4c32c28dc13d4c9061e9992a40f7f685b9a |
| Linux | ARM64 | chainloop-linux-arm64 | 0f570b3e9762c52ceb76f880403d236e917fac7a598621a4debf3418a9440a51 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 120cb395a3a9f1aead9ee3c9b45e9d083da60afacc752f8918ed93f523b70a4d |
| macOS | Apple Silicon | chainloop-darwin-arm64 | fb179668461887e87fc1be3fbd32f3241bc1975c1b3188880d4ae6020ebffdad |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.75.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.74.1
v1.74.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 4019d9d5b18c4f2cf67f8300f64a27eeeecff04acca9af5892d89007600d351d |
| Linux | ARM64 | chainloop-linux-arm64 | 826bf90f9922b9d5db41fb9dab8ee40f0dc09969b44b62a61e7bee2fde0db734 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | ce4545fb993dc295c8cd5d26f85ad3032dc25bfe9c68267b5cf66db1d4774796 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 7e337bde4e79c004b3c9c5e9cd0200bee924105c199050c96fabc2fb28198477 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.74.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.74.0
v1.74.0
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 5f3890418f9622a49493dc372bdc42397ba00cb3ed05c2dddcea2f861fbe62b3 |
| Linux | ARM64 | chainloop-linux-arm64 | cb1a73b3ddafe5889dbcc3115097cb53f7db520409bae4b231b4816be413a9b5 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 3bfe953139112d2c843600a4703bc65d5ac14f835808cacb83b6d2c59b0ef9e4 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | e0c6c15185a2dffecb5bc00bc8feefb4d016c2b2144c6f3a91b711692ab0f4d5 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.74.0
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.73.2
v1.73.2
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 88c008610950ba302545e9ec24008650a948247d497e7228768d48737a9d4ad7 |
| Linux | ARM64 | chainloop-linux-arm64 | f104aeb87df948400db9cd3e095b556d50d8c64b772962241e15c269cce1ba91 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 9012689011e55054d4249150e8d0ea48f5816e15603f20efcc76c4f0feca8375 |
| macOS | Apple Silicon | chainloop-darwin-arm64 | 8ba3bd56af8c7b5c5bfd29500f12965c7da28bd8b1d549b81f90217146d57f89 |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.73.2
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
v1.73.1
v1.73.1
| OS | Architecture | Download | SHA256 |
|---|---|---|---|
| Linux | Intel (amd64) | chainloop-linux-amd64 | 7dea4b8e87a820a7b41a6e06a83302efb9398389a10b5e45fec63388779ed8aa |
| Linux | ARM64 | chainloop-linux-arm64 | 9d8e0dfadcf7ae9b92f83141e681b5b3fa2d394436299b5aed698bf753995fa7 |
| macOS | Intel (amd64) | chainloop-darwin-amd64 | 1a0cf6f3322db9e54fd41cddbde2156577bbc33602e488e40384b0e0bd16f69d |
| macOS | Apple Silicon | chainloop-darwin-arm64 | ed909640031769226328f76ac955d772b3ca39967db7c8c3c73dd806372ea91b |
checksums.txt · Release notesDownload, verify, and install (linux/amd64 shown — swap chainloop-linux-amd64 for another row from the table above):VERSION=v1.73.1
BASE=https://chainloop-baafegchfnekdcde.z02.azurefd.net/public/chainloop-platform-cli/$VERSION
# Download the linux/amd64 binary and the checksum manifest
curl -fsSLO "$BASE/chainloop-linux-amd64"
curl -fsSLO "$BASE/checksums.txt"
# Verify the binary against the manifest
sha256sum --ignore-missing -c checksums.txt
# on macOS: shasum -a 256 --ignore-missing -c checksums.txt
# Install it onto your PATH
chmod +x chainloop-linux-amd64
sudo mv chainloop-linux-amd64 /usr/local/bin/chainloop
chainloop config save \
--control-plane my-controlplane.acme.com:443 \
--artifact-cas cas.acme.com:443 \
--platform my-platform.acme.com:443
