Skip to content

Merge pull request #42 from Volgat/fix-docs-typos-and-formatting #10

Merge pull request #42 from Volgat/fix-docs-typos-and-formatting

Merge pull request #42 from Volgat/fix-docs-typos-and-formatting #10

name: Deploy to Prod Firestore
on:
push:
branches: [ main ]
jobs:
deploy-prod:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy to Prod Firestore
env:
FIRESTORE_PROJECT_ID: ${{ secrets.PROD_FIRESTORE_PROJECT_ID }}
FIRESTORE_CREDENTIALS_JSON: ${{ secrets.PROD_FIRESTORE_CREDENTIALS_JSON }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
python update_docs.py --mode incremental