From e2836ba2288a2047fbece2d8cc5638833c327134 Mon Sep 17 00:00:00 2001 From: Jennifer Hamon Date: Tue, 10 Oct 2023 16:34:07 -0400 Subject: [PATCH] [Fix] Expose environment vars in integration test cleanup job (#140) ## Problem The nightly cleanup job errored because I did not properly expose the environment variables it needs. ## Solution Wire up the environment variables. ## Type of Change - [x] Infrastructure change (CI configs, etc) ## Test Plan See the cleanup job [succeed](https://github.com/pinecone-io/pinecone-ts-client/actions/runs/6470956881/job/17568308642). --- .github/workflows/cleanup.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index fd071585..bd2d28b7 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -16,3 +16,6 @@ jobs: uses: ./.github/actions/setup - name: Cleanup run: npm run test:integration:cleanup + env: + PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} + PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }}