File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,6 @@ runs:
239239 directory = config["tool"]["towncrier"]["directory"]
240240 project_name = config["tool"]["towncrier"].get("package")
241241
242-
243242 # If the project name is not specified, use the project name from the pyproject.toml
244243 # Last resource - just call it DNE. In any case, based on our template, this value is not used
245244 if project_name is None:
@@ -250,7 +249,7 @@ runs:
250249
251250 # Append the TOWNCRIER_DIR and TOWNCRIER_NAME with its value to GITHUB_ENV
252251 with open(github_env, "a") as f:
253- f.write(f"TOWNCRIER_DIR={directory}")
252+ f.write(f"TOWNCRIER_DIR={directory}\n ")
254253 f.write(f"TOWNCRIER_NAME={project_name}")
255254
256255 - name : " Get main branch name"
Original file line number Diff line number Diff line change 1+ Add newline between environment variables in Python
You can’t perform that action at this time.
0 commit comments