Skip to content

Commit

Permalink
add deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lendemor committed Nov 29, 2024
1 parent bedbbbf commit aec2220
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
push:
branches: ['lendemor/use_deploy_action']

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Deploy
uses: reflex-dev/reflex-deploy-action@v0
with:
auth_token: ${{ secrets.REFLEX_AUTH_TOKEN }}
project_id: ${{ secrets.PROJECT_ID }}
extra_args: "--vm-type=${{ vars.VM_TYPE }}"
python_version: 3.12

0 comments on commit aec2220

Please sign in to comment.