Skip to content

Commit

Permalink
[Fix] Expose environment vars in integration test cleanup job (#140)
Browse files Browse the repository at this point in the history
## 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).
  • Loading branch information
jhamon authored Oct 10, 2023
1 parent 51bc16c commit e2836ba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit e2836ba

Please sign in to comment.