From c13d4d55fad8535629f469b9143571cb205d885f Mon Sep 17 00:00:00 2001 From: Scott Prutton Date: Mon, 19 Aug 2024 17:37:55 -0400 Subject: [PATCH] fix: set otel url on web build --- .github/workflows/deploy-service.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-service.yml b/.github/workflows/deploy-service.yml index f8257d52ee..0f25b14670 100644 --- a/.github/workflows/deploy-service.yml +++ b/.github/workflows/deploy-service.yml @@ -54,7 +54,8 @@ jobs: - name: Build if: ${{ inputs.service == 'web' }} working-directory: app/web - run: pnpm run build + run: + VITE_OTEL_EXPORTER_OTLP_ENDPOINT=${{ vars.VITE_SI_WORKSPACE_URL }} pnpm run build - name: Deploy if: ${{ inputs.service == 'web' }}