This commit is contained in:
2026-04-25 16:36:34 +08:00
commit db90e7579b
1876 changed files with 189777 additions and 0 deletions

28
.github/workflows/deploy-github-app.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: "Deployment Tailchat Github App"
on:
push:
branches:
- master
paths:
- "apps/github-app/**"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Deploy to Vercel
uses: amondnet/vercel-action@master
env:
VERSION: ${{ env.GITHUB_SHA }}
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.ORG_ID}}
vercel-project-id: prj_KwCzbuSaEj3XmP0sYvvnqqiK7nCW
working-directory: ./apps/github-app
vercel-args: '--prod'