diff --git a/.github/workflows/build-enterprise.yaml b/.github/workflows/build-enterprise.yaml index 130ee0a173..4a032d5f1d 100644 --- a/.github/workflows/build-enterprise.yaml +++ b/.github/workflows/build-enterprise.yaml @@ -69,6 +69,7 @@ jobs: echo 'POSTHOG_KEY="${{ secrets.POSTHOG_KEY }}"' >> frontend/.env echo 'CUSTOMERIO_ID="${{ secrets.CUSTOMERIO_ID }}"' >> frontend/.env echo 'CUSTOMERIO_SITE_ID="${{ secrets.CUSTOMERIO_SITE_ID }}"' >> frontend/.env + echo 'USERPILOT_KEY="${{ secrets.USERPILOT_KEY }}"' >> frontend/.env - name: cache-dotenv uses: actions/cache@v4 with: diff --git a/.github/workflows/build-staging.yaml b/.github/workflows/build-staging.yaml index 5014850b5b..acbbacff22 100644 --- a/.github/workflows/build-staging.yaml +++ b/.github/workflows/build-staging.yaml @@ -64,8 +64,9 @@ jobs: run: | mkdir -p frontend echo 'CI=1' > frontend/.env - echo 'TUNNEL_URL=https://telemetry.staging.signoz.cloud/tunnel' >> frontend/.env - echo 'TUNNEL_DOMAIN=https://telemetry.staging.signoz.cloud' >> frontend/.env + echo 'TUNNEL_URL="${{ secrets.NP_TUNNEL_URL }}"' >> frontend/.env + echo 'TUNNEL_DOMAIN="${{ secrets.NP_TUNNEL_DOMAIN }}"' >> frontend/.env + echo 'USERPILOT_KEY="${{ secrets.NP_USERPILOT_KEY }}"' >> frontend/.env - name: cache-dotenv uses: actions/cache@v4 with: diff --git a/.github/workflows/gor-signoz.yaml b/.github/workflows/gor-signoz.yaml index 5aa30f1fe0..c92e222cee 100644 --- a/.github/workflows/gor-signoz.yaml +++ b/.github/workflows/gor-signoz.yaml @@ -35,6 +35,7 @@ jobs: echo 'POSTHOG_KEY="${{ secrets.POSTHOG_KEY }}"' >> .env echo 'CUSTOMERIO_ID="${{ secrets.CUSTOMERIO_ID }}"' >> .env echo 'CUSTOMERIO_SITE_ID="${{ secrets.CUSTOMERIO_SITE_ID }}"' >> .env + echo 'USERPILOT_KEY="${{ secrets.USERPILOT_KEY }}"' >> .env - name: build-frontend run: make js-build - name: upload-frontend-artifact