Skip to content

Commit f1f5ae5

Browse files
committed
Force remove carriage return from .env file
1 parent 1828d18 commit f1f5ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
echo "${{ secrets.nginx_forward_secret }}" > "nginx_forward_secret.txt"
112112
cd ..
113113
114-
echo "${{ vars.PRODUCTION_VARIABLES }}" > ".env"
114+
echo "${{ vars.PRODUCTION_VARIABLES }}" | tr -d '\r' > ".env"
115115
116116
rsync -aqc docker-compose.yml docker-compose.prod.yml .env secrets ${{ secrets.ssh_connection }}:/vectorapp/app/compose/
117117
- name: Build and push changes

0 commit comments

Comments
 (0)