From 6af912d7e07e63c60b6d8fa6ce4904a967374b2f Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 6 Feb 2024 11:27:04 -0800 Subject: [PATCH] infra: add pinecone secret (#17120) --- .github/workflows/_integration_test.yml | 2 ++ .github/workflows/_release.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index e0dcf25c13..8f64e2bfd4 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -57,6 +57,8 @@ jobs: GOOGLE_CSE_ID: ${{ secrets.GOOGLE_CSE_ID }} EXA_API_KEY: ${{ secrets.EXA_API_KEY }} NOMIC_API_KEY: ${{ secrets.NOMIC_API_KEY }} + PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} + PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} run: | make integration_tests diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index c37d87e0ad..c140f93ba5 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -176,6 +176,8 @@ jobs: GOOGLE_CSE_ID: ${{ secrets.GOOGLE_CSE_ID }} EXA_API_KEY: ${{ secrets.EXA_API_KEY }} NOMIC_API_KEY: ${{ secrets.NOMIC_API_KEY }} + PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} + PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} run: make integration_tests working-directory: ${{ inputs.working-directory }}