Skip to content

Commit 75e4297

Browse files
author
tahcohcat
committed
Towards fixing CI/CD dockerhub deploy
1 parent 379584d commit 75e4297

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
- name: Login to DockerHub
4141
uses: docker/login-action@v3
4242
with:
43-
username: ${{ secrets.DOCKER_USERNAME }}
44-
password: ${{ secrets.DOCKER_PASSWORD }}
43+
username: ${{ secrets.DOCKER_HUB_USER }}
44+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
4545

4646
- name: Build and push Docker image
4747
uses: docker/build-push-action@v5

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ A lightweight RESTful microservice for storing and searching vectors using cosin
4545
- `POST /api/v1/vectors/search` - Search vectors by similarity
4646
- `POST /api/v1/search` - Search vectors by text (auto-embedding and similarity search)
4747

48+
### Health
49+
- `GET /health` - Health check endpoint
50+
4851
### Architecture
4952

5053
The diagram illustrates the core components and data flow of the Same-Same Vector Database Microservice:
@@ -88,9 +91,6 @@ graph TD
8891
E --> F
8992
```
9093

91-
### Health
92-
- `GET /health` - Health check endpoint
93-
9494
## Setup
9595

9696
### Environment Variables

0 commit comments

Comments
 (0)