Gate net worth behind Max tier; add assets/liabilities to data.json #8
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 to Cloud Run | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "backend/**" | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: auth | |
| uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: ${{ secrets.GCP_SA_KEY }} | |
| - uses: google-github-actions/setup-gcloud@v2 | |
| - name: Deploy to Cloud Run | |
| run: | | |
| cd backend | |
| gcloud run deploy expense-ocr \ | |
| --source . \ | |
| --region us-central1 \ | |
| --allow-unauthenticated \ | |
| --project ${{ secrets.GCP_PROJECT_ID }} |