fix(full-techniques): use Gemini API instead of Vertex AI, add git to… #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Backend | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'backend/**' | |
| - '.github/workflows/deploy-backend.yml' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| working-directory: ./backend | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Run tests | |
| working-directory: ./backend | |
| run: pytest --tb=short | |
| - name: Build Docker image | |
| working-directory: ./backend | |
| run: docker build -t somm-backend:latest . | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: test | |
| if: github.ref == 'refs/heads/main' && vars.ENABLE_FLY_DEPLOY == 'true' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Deploy to Fly.io | |
| uses: superfly/flyctl-actions/setup-flyctl@master | |
| with: | |
| flyctl-version: latest | |
| - name: Deploy | |
| working-directory: ./backend | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| run: flyctl deploy --remote-only | |
| - name: Verify deployment | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| run: | | |
| flyctl status | |
| flyctl logs --instance --no-tail |