Skip to content

Commit

Permalink
Added quotation marks around env file in deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
erland-syafiq committed Jun 22, 2024
1 parent fbb3721 commit 0d3a1aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Clean earlier environment variables
run: rm site/.env.production || true
- name: Create environment variables
run: echo ${{ secrets.ENV_FILE }} > site/.env.production
run: echo "${{ secrets.ENV_FILE }}" > site/.env.production
- name: Build docker image
run: docker build -t vtmunc/site ./site
- name: Remove environment variables file
Expand Down

0 comments on commit 0d3a1aa

Please sign in to comment.