From 7c824fd27fdaefc1d42545f35b3efd0688f3ba02 Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Wed, 13 Nov 2024 21:52:49 -0600 Subject: [PATCH] use simpler cert concat --- .github/workflows/pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index e23ce2b896..7208149e5d 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -250,4 +250,4 @@ jobs: - name: Telemetry summarize uses: rapidsai/shared-actions/telemetry-dispatch-write-summary@main with: - cert_concat: join(fromJSON('["${{ secrets.OTEL_EXPORTER_OTLP_CA_CERTIFICATE }}", "${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE }}", "${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_KEY }}"]'), ';') + cert_concat: "${{ secrets.OTEL_EXPORTER_OTLP_CA_CERTIFICATE }};${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE }};${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_KEY }}"