From 7c8cec424275fd8840d801fd788feb8fda6356f6 Mon Sep 17 00:00:00 2001 From: DevDoshi19 Date: Mon, 22 Jun 2026 22:02:57 +0530 Subject: [PATCH 1/2] ci:fix image tags to lowercase ghcr.io --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a3e7d0..ead640a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,7 +119,7 @@ jobs: context: ./backend push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} load: ${{ github.event_name == 'pull_request' }} - tags: ghcr.io/${{ github.repository_owner }}/vaultmind-backend:latest + tags: ghcr.io/devdoshi19/VaultMind-backend:latest - name: Build frontend image uses: docker/build-push-action@v5 @@ -127,17 +127,17 @@ jobs: context: ./frontend push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} load: ${{ github.event_name == 'pull_request' }} - tags: ghcr.io/${{ github.repository_owner }}/vaultmind-frontend:latest + tags: ghcr.io/$devdoshi19/VaultMind-frontend:latest # Start the backend container and hit /health to prove it actually runs. # The health endpoint doesn't call OpenAI — graph just needs to compile. - name: Smoke test backend container run: | docker run -d \ - --name vaultmind-backend-test \ + --name VaultMind-backend-test \ -p 8000:8000 \ -e OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} \ - ghcr.io/${{ github.repository_owner }}/vaultmind-backend:latest + ghcr.io/devdoshi19/VaultMind-backend:latest echo "Waiting for backend to start..." for i in $(seq 1 15); do @@ -153,4 +153,4 @@ jobs: - name: Clean up test container if: always() - run: docker rm -f vaultmind-backend-test || true \ No newline at end of file + run: docker rm -f VaultMind-backend-test || true \ No newline at end of file From 419a0185e569f01110736ce2afe725e4570553bf Mon Sep 17 00:00:00 2001 From: DevDoshi19 Date: Mon, 22 Jun 2026 22:05:15 +0530 Subject: [PATCH 2/2] ci:fix image tags to lowercase ghcr.io --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ead640a..ba70d79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,3 @@ -# .github/workflows/ci.yml -# -# VaultMind CI/CD — runs on every push and PR to main. -# # Jobs: # backend-checks → verify pipeline + API imports (parallel) # frontend-checks → verify streamlit + httpx imports (parallel)