Skip to content

Commit

Permalink
fix(ci): use single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftpsh committed Mar 15, 2024
1 parent 82af7f3 commit fc94772
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Make .env
run: |
touch ./src/config.ts
echo "${{ secrets.SERVER_CONFIG }}" >> ./src/config.ts
echo '${{ secrets.SERVER_CONFIG }}' >> ./src/config.ts
touch ./src/prisma/.env
echo '${{ secrets.SERVER_PRISMA_ENV }}' >> ./src/prisma/.env
- name: Set up Docker Buildx
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Make .env
run: |
touch ./src/config.ts
echo "${{ secrets.SERVER_CONFIG }}" >> ./src/config.ts
echo '${{ secrets.SERVER_CONFIG }}' >> ./src/config.ts
touch ./src/prisma/.env
echo '${{ secrets.SERVER_PRISMA_ENV }}' >> ./src/prisma/.env
- name: Configure AWS credentials
Expand Down

0 comments on commit fc94772

Please sign in to comment.