diff --git a/.github/actions/e2e_verify/action.yml b/.github/actions/e2e_verify/action.yml index 12a346753..a9f3c6979 100644 --- a/.github/actions/e2e_verify/action.yml +++ b/.github/actions/e2e_verify/action.yml @@ -66,8 +66,12 @@ runs: forwarderPID=$! sleep 5 - echo "Extracting TCB versions for API update" - constellation verify --cluster-id "${clusterID}" --node-endpoint localhost:9090 -o json > "snp-report-${node}.json" + if [[ ${{ inputs.attestationVariant }} == "azure-sev-snp" ]] || { [[ ${{ inputs.attestationVariant }} == "aws-sev-snp" ]]; then + echo "Extracting TCB versions for API update" + constellation verify --cluster-id "${clusterID}" --node-endpoint localhost:9090 -o json > "snp-report-${node}.json" + else + constellation verify --cluster-id "${clusterID}" --node-endpoint localhost:9090 + fi kill $forwarderPID done