From f07a69644e6b7031698e0151d54bbdfa64c46544 Mon Sep 17 00:00:00 2001 From: Miguel Martinez Date: Wed, 18 Feb 2026 12:13:12 +0100 Subject: [PATCH] fix(release): use EE CLI in finish_attestation to support project_compliance The finish_attestation job was installing the OSS CLI, which lacks the chainloop.project_compliance Rego built-in function required during policy evaluation. This caused attestation push to fail. Now it installs the EE CLI, consistent with the other jobs in the workflow. Signed-off-by: Miguel Martinez --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 18f46fbc9..6a1447e91 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -215,7 +215,7 @@ jobs: steps: - name: Install Chainloop run: | - curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s + curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee - name: Finish and Record Attestation id: attestation_push