Skip to content

Commit

Permalink
Merge pull request #10 from shamspias/dev
Browse files Browse the repository at this point in the history
fix: env variables
  • Loading branch information
shamspias authored Dec 25, 2023
2 parents eb7703a + c38e322 commit 87bcf7d
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=\"$GEMINI_API_KEY\"" >> .env
echo "REDIS_URL=\"$REDIS_URL\"" >> .env
echo "MY_API_KEY=\"$MY_API_KEY\"" >> .env
echo "SYSTEM_INSTRUCTION=\"$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 87bcf7d

Please sign in to comment.