We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afa18b commit 2be4e56Copy full SHA for 2be4e56
.github/workflows/deploy.yml
@@ -16,6 +16,9 @@ jobs:
16
strategy:
17
matrix:
18
folder: ${{ fromJSON(needs.list-templates.outputs.templates) }}
19
+ exclude:
20
+ # No deploy due to missing service dependencies.
21
+ - folder: reflex-llamaindex-template
22
fail-fast: false
23
steps:
24
- uses: actions/checkout@v4
@@ -31,6 +34,9 @@ jobs:
31
34
sales)
32
35
echo "EXTRA_ARGS=--env OPENAI_API_KEY=${{ secrets.OPEN_AI_KEY }}" >> $GITHUB_ENV
33
36
;;
37
+ reflex-chat)
38
+ echo "EXTRA_ARGS=--env OPENAI_API_KEY=${{ secrets.OPEN_AI_KEY }}" >> $GITHUB_ENV
39
+ ;;
40
nba)
41
echo "EXTRA_ARGS=--vmtype ${{ vars.NBA_VM_TYPE }}" >> $GITHUB_ENV
42
0 commit comments