fix: Make deploy workflow valid YAML + python
This commit is contained in:
@ -108,10 +108,10 @@ jobs:
|
|||||||
for k, v in env.items():
|
for k, v in env.items():
|
||||||
if v is None:
|
if v is None:
|
||||||
continue
|
continue
|
||||||
lines.append(f\"{k}={v}\")
|
lines.append(f"{k}={v}")
|
||||||
|
|
||||||
Path(\"backend.env\").write_text(\"\\n\".join(lines) + \"\\n\")
|
Path("backend.env").write_text("\n".join(lines) + "\n")
|
||||||
PY
|
PY
|
||||||
|
|
||||||
- name: Upload backend env to server
|
- name: Upload backend env to server
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user