Skip to content

Commit aec2220

Browse files
committed
add deploy workflow
1 parent bedbbbf commit aec2220

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
push:
3+
branches: ['lendemor/use_deploy_action']
4+
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Deploy
12+
uses: reflex-dev/reflex-deploy-action@v0
13+
with:
14+
auth_token: ${{ secrets.REFLEX_AUTH_TOKEN }}
15+
project_id: ${{ secrets.PROJECT_ID }}
16+
extra_args: "--vm-type=${{ vars.VM_TYPE }}"
17+
python_version: 3.12

0 commit comments

Comments
 (0)