Skip to content

fix: Clean up repository and fix failing tests #136

fix: Clean up repository and fix failing tests

fix: Clean up repository and fix failing tests #136

Workflow file for this run

name: Deploy
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: |
docker build -t second-brain:${{ github.sha }} .
echo "✅ Docker image built successfully"
- name: Log build info
run: |
echo "🚀 Build completed"
echo "Commit: ${{ github.sha }}"
echo "Time: $(date)"