We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GITHUB_OUTPUT
1 parent 4fc3095 commit dfe1c9fCopy full SHA for dfe1c9f
jupyter_releaser/util.py
@@ -398,7 +398,7 @@ def actions_output(name, value):
398
"""Handle setting an action output on GitHub"""
399
log(f"\n\nSetting output {name}={value}")
400
if "GITHUB_OUTPUT" in os.environ:
401
- with open("GITHUB_OUTPUT", "a") as fid:
+ with open(os.environ["GITHUB_OUTPUT"], "a") as fid:
402
fid.write(f"{name}={value}\n")
403
404
0 commit comments