This repository was archived by the owner on Apr 28, 2026. It is now read-only.
Update router attributes documentation with raw_headers (#1328) #119
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to dev | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: deploy-dev | |
| cancel-in-progress: false | |
| env: | |
| CP_WEB_URL: https://cloud.rxc.app/ | |
| CP_BACKEND_URL: https://cloud-f188e2cd-51fb-4b29-b546-2ce4b9efc5d5.fly.dev/ | |
| jobs: | |
| deploy: | |
| name: Deploy to Reflex Cloud | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Requirements | |
| run: pip install -r requirements.txt | |
| - name: Update Reflex CLI | |
| run: pip install reflex-hosting-cli -U | |
| - name: Deploy to Reflex | |
| id: deploy | |
| run: | | |
| reflex deploy --project ${{ secrets.DEV_PROJECT_ID }} --token ${{ secrets.DEV_TOKEN }} --no-interactive | |