Skip to content

Commit

Permalink
fix: change .env filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
y9yk committed Aug 11, 2024
1 parent 080df1e commit a13f655
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

- name: Create .env file
run: |
echo "MEDIUM_ACCESS_TOKEN=${{ secrets.MEDIUM_ACCESS_TOKEN }}" >> .env
echo "OPENAI_MODEL_NAME=${{ secrets.OPENAI_MODEL_NAME }}" >> .env
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> .env
echo "DEBUG=${{ secrets.DEBUG }}" >> .env
echo "MEDIUM_ACCESS_TOKEN=${{ secrets.MEDIUM_ACCESS_TOKEN }}" >> ./config/.env
echo "OPENAI_MODEL_NAME=${{ secrets.OPENAI_MODEL_NAME }}" >> ./config/.env
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> ./config/.env
echo "DEBUG=${{ secrets.DEBUG }}" >> ./config/.env
shell: bash

- name: Create Google Services JSON File
Expand Down

0 comments on commit a13f655

Please sign in to comment.