Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/manual-benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ jobs:
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
username: qdrant
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Vector DB image
if: ${{ inputs.build_vector_db_image == 'true' }}
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ghcr.io/${{ github.actor }}/vector-db-benchmark:${{ github.ref_name }}
tags: ghcr.io/qdrant/vector-db-benchmark:${{ github.ref_name }}
provenance: false
- name: Benches
run: |
Expand All @@ -68,7 +68,7 @@ jobs:
export POSTGRES_TABLE=benchmark_manual
export QDRANT__FEATURE_FLAGS__ALL=${{ inputs.feature_flags_all }}
if [ "${{ inputs.build_vector_db_image }}" = "true" ]; then
export VECTOR_DB_BENCHMARK_IMAGE=ghcr.io/${{ github.actor }}/vector-db-benchmark:${{ github.ref_name }}
export VECTOR_DB_BENCHMARK_IMAGE=ghcr.io/qdrant/vector-db-benchmark:${{ github.ref_name }}
export GHCR_PASSWORD=${{ secrets.GITHUB_TOKEN }}
fi
bash -x tools/setup_ci.sh
Expand Down
Loading