Skip to content

Update imports (#32) #29

Update imports (#32)

Update imports (#32) #29

name: Deploy Production
on:
push:
branches:
- main
jobs:
deploy-backend:
name: Deploy Backend to Fly
environment: Production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Write Google Vertex credentials file
run: echo '${{ secrets.GOOGLE_VERTEX_AI_CREDENTIALS }}' > ./.google_vertex_ai_credentials.json
- name: Show folder contents
run: ls -a
- run: flyctl deploy --wait-timeout 600
env:
GOOGLE_VERTEX_AI_CREDENTIALS: ${{ secrets.GOOGLE_VERTEX_AI_CREDENTIALS }}
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
deploy-frontend:
name: Deploy Frontend to Vercel
runs-on: ubuntu-latest
environment: Production
needs: deploy-backend
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}