Skip to content

Commit

Permalink
Cleanup indexes after dependency tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Feb 5, 2024
1 parent 5d51970 commit 63f7b73
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/testing-dependency.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ jobs:
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
INDEX_NAME: ${{ needs.dependency-matrix-setup.outputs.index_name }}




dependency-matrix-rest:
name: Deps (REST)
runs-on: ubuntu-latest
Expand Down Expand Up @@ -140,3 +137,18 @@ jobs:
env:
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'
INDEX_NAME: '${{ needs.dependency-matrix-setup.outputs.index_name }}'

dependency-matrix-cleanup:
name: Deps cleanup
runs-on: ubuntu-latest
needs:
- dependency-matrix-grpc
- dependency-matrix-rest
- dependency-matrix-setup
steps:
- uses: xxxxxxxxxxxxxxxx@xx
- name: Delete index
uses: ./.github/actions/delete-index
with:
index_name: ${{ needs.dependency-matrix-setup.outputs.index_name }}
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}

0 comments on commit 63f7b73

Please sign in to comment.