Skip to content

Commit d652cdd

Browse files
authored
Fix username (#269)
1 parent b42bda8 commit d652cdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/manual-benchmark.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
uses: docker/login-action@v3
4848
with:
4949
registry: ghcr.io
50-
username: ${{ github.actor }}
50+
username: qdrant
5151
password: ${{ secrets.GITHUB_TOKEN }}
5252
- name: Build Vector DB image
5353
if: ${{ inputs.build_vector_db_image == 'true' }}
5454
uses: docker/build-push-action@v6
5555
with:
5656
context: .
5757
push: true
58-
tags: ghcr.io/${{ github.actor }}/vector-db-benchmark:${{ github.ref_name }}
58+
tags: ghcr.io/qdrant/vector-db-benchmark:${{ github.ref_name }}
5959
provenance: false
6060
- name: Benches
6161
run: |
@@ -68,7 +68,7 @@ jobs:
6868
export POSTGRES_TABLE=benchmark_manual
6969
export QDRANT__FEATURE_FLAGS__ALL=${{ inputs.feature_flags_all }}
7070
if [ "${{ inputs.build_vector_db_image }}" = "true" ]; then
71-
export VECTOR_DB_BENCHMARK_IMAGE=ghcr.io/${{ github.actor }}/vector-db-benchmark:${{ github.ref_name }}
71+
export VECTOR_DB_BENCHMARK_IMAGE=ghcr.io/qdrant/vector-db-benchmark:${{ github.ref_name }}
7272
export GHCR_PASSWORD=${{ secrets.GITHUB_TOKEN }}
7373
fi
7474
bash -x tools/setup_ci.sh

0 commit comments

Comments
 (0)