Skip to content

Commit

Permalink
really scratching my head here
Browse files Browse the repository at this point in the history
why are the lines from `temporary_db.py` not getting picked up
  • Loading branch information
masenf committed Jan 7, 2025
1 parent 76b276a commit 4154bd3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,17 @@ jobs:
echo "EXTRA_ARGS=--env REPLICATE_API_TOKEN=${{ secrets.REPLICATE_API_TOKEN }}" >> $GITHUB_ENV
;;
customer_data_app)
set -x
cat .deploy/temporary_db.py >> ${{ matrix.folder }}/customer_data/customer_data.py
cat ${{ matrix.folder }}/customer_data/customer_data.py
set +x
;;
sales)
echo "EXTRA_ARGS=--env OPENAI_API_KEY=${{ secrets.OPEN_AI_KEY }}" >> $GITHUB_ENV
echo "EXTRA_ARGS=--env OPENAI_API_KEY=${{ secrets.OPEN_AI_KEY }} --loglevel debug" >> $GITHUB_ENV
set -x
cat .deploy/temporary_db.py >> ${{ matrix.folder }}/${{ matrix.folder }}/${{ matrix.folder }}.py
cat ${{ matrix.folder }}/${{ matrix.folder }}/${{ matrix.folder }}.py
set +x
;;
reflex-chat)
echo "EXTRA_ARGS=--env OPENAI_API_KEY=${{ secrets.OPEN_AI_KEY }}" >> $GITHUB_ENV
Expand Down

0 comments on commit 4154bd3

Please sign in to comment.