Skip to content

Commit

Permalink
fix: quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tituschewxj committed Oct 8, 2024
1 parent 5e8f0c3 commit 6944b89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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
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 All @@ -61,5 +61,5 @@ jobs:

- name: Run Tests
run: |
curl --fail http://localhost:3000 # Adjust based on the app
curl --fail http://localhost:3000
# We can add more tests here

0 comments on commit 6944b89

Please sign in to comment.