Skip to content

Commit

Permalink
fix: env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
shamspias committed Dec 25, 2023
1 parent c38e322 commit a6806b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
pip install -r requirements.txt
# Add environment variables to the .env file
echo 'GEMINI_API_KEY="${{ secrets.GEMINI_API_KEY }}"' >> .env
echo 'REDIS_URL="${{ secrets.REDIS_URL }}"' >> .env
echo 'MY_API_KEY="${{ secrets.MY_API_KEY }}"' >> .env
echo 'SYSTEM_INSTRUCTION="${{ secrets.SYSTEM_INSTRUCTION }}"' >> .env
echo "GEMINI_API_KEY=${{ secrets.GEMINI_API_KEY }}" >> .env
echo "REDIS_URL=${{ secrets.REDIS_URL }}" >> .env
echo "MY_API_KEY=${{ secrets.MY_API_KEY }}" >> .env
echo "SYSTEM_INSTRUCTION=${{ secrets.SYSTEM_INSTRUCTION }}" >> .env
# Ensure the NGINX config directories are clean
Expand Down

0 comments on commit a6806b6

Please sign in to comment.