Skip to content

Commit

Permalink
fix: path
Browse files Browse the repository at this point in the history
  • Loading branch information
tituschewxj committed Oct 8, 2024
1 parent 3a6b8ce commit 5e8f0c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:

- name: Create Environment Files
run: |
cd ./apps/frontend
cd "./apps/frontend"
echo "NEXT_PUBLIC_QUESTION_SERVICE_URL=${{ env.QUESTION_SERVICE_URL }}" >> .env
echo "NEXT_PUBLIC_USER_SERVICE_URL=${{ env.USER_SERVICE_URL }} >> .env
cd ../question-service
cd "../question-service"
echo "FIREBASE_CREDENTIAL_PATH=${{ env.QUESTION_SERVICE_FIREBASE_CREDENTIAL_PATH }}" >> .env
echo "JWT_SECRET=${{ secrets.JWT_SECRET }}" >> .env
cd ../user-service
cd "../user-service"
echo "DB_CLOUD_URI=${{ env.USER_SERVICE_DB_CLOUD_URI }}" >> .env
echo "PORT=${{ env.USER_SERVICE_PORT }}" >> .env
echo "JWT_SECRET=${{ secrets.JWT_SECRET }}" >> .env
Expand Down

0 comments on commit 5e8f0c3

Please sign in to comment.