From 547b24a1f7b904030f8f6cc3876929f89b99f638 Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Wed, 13 Nov 2024 21:52:33 -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 10d198b8a9..e9d8557d95 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -210,4 +210,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 }}"