mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Automatically deploy to Vercel (#4307)
This commit is contained in:
parent
9183f7bf61
commit
664346e34b
2 changed files with 12 additions and 0 deletions
6
.github/workflows/website-deploy.yml
vendored
6
.github/workflows/website-deploy.yml
vendored
|
|
@ -1,6 +1,11 @@
|
|||
name: Deploy roocode.com
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'apps/web-roo-code/**'
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
|
|
@ -10,6 +15,7 @@ env:
|
|||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ secrets.VERCEL_TOKEN != '' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
|
|
|||
6
.github/workflows/website-preview.yml
vendored
6
.github/workflows/website-preview.yml
vendored
|
|
@ -1,6 +1,11 @@
|
|||
name: Preview roocode.com
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- main
|
||||
paths:
|
||||
- 'apps/web-roo-code/**'
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
|
|
@ -10,6 +15,7 @@ env:
|
|||
jobs:
|
||||
preview:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ secrets.VERCEL_TOKEN != '' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue