Skip to content

Commit daf3d35

Browse files
fix: Add newline between environment variables in Python (#784)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent 895de85 commit daf3d35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc-deploy-changelog/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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"

doc/source/changelog/784.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add newline between environment variables in Python

0 commit comments

Comments
 (0)