mirror of
https://github.com/langchain-ai/weblangchain.git
synced 2026-07-01 10:05:25 -04:00
49d02390d7
Add workflow dispatch
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
name: Deploy Production
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
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 }}
|