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:
239
239
directory = config["tool"]["towncrier"]["directory"]
240
240
project_name = config["tool"]["towncrier"].get("package")
241
241
242
-
243
242
# If the project name is not specified, use the project name from the pyproject.toml
244
243
# Last resource - just call it DNE. In any case, based on our template, this value is not used
245
244
if project_name is None:
@@ -250,7 +249,7 @@ runs:
250
249
251
250
# Append the TOWNCRIER_DIR and TOWNCRIER_NAME with its value to GITHUB_ENV
252
251
with open(github_env, "a") as f:
253
- f.write(f"TOWNCRIER_DIR={directory}")
252
+ f.write(f"TOWNCRIER_DIR={directory}\n ")
254
253
f.write(f"TOWNCRIER_NAME={project_name}")
255
254
256
255
- 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