Skip to content

Commit 29a044a

Browse files
committed
🚚 cd: add quotation marks around env file
1 parent 9b6eaa9 commit 29a044a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
script: |
3232
cd ~/smart-farming-scp
3333
echo ${{ secrets.ENV_FILE }}
34-
env_file_string=$(echo ${{ secrets.ENV_FILE }})
34+
env_file_string=$(echo "${{ secrets.ENV_FILE }}")
3535
echo $env_file_string | tr ' ' '\n' | sed 's/\([^=]\+\)=\([^ ]\+\)/\1=\2/' > ~/smart-farming-scp/.env
3636
docker compose up -d

0 commit comments

Comments
 (0)