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.
1 parent a966e00 commit 7977e0eCopy full SHA for 7977e0e
.github/workflows/test.yml
@@ -128,6 +128,8 @@ jobs:
128
- test
129
- docs
130
- pre-commit
131
+ - check_local_actions
132
+ - generate-changelog
133
runs-on: ubuntu-latest
134
steps:
135
- name: Decide whether the needed jobs succeeded or failed
jupyter_releaser/util.py
@@ -397,8 +397,8 @@ def latest_draft_release(gh, branch=None):
397
def actions_output(name, value):
398
"""Handle setting an action output on GitHub"""
399
log(f"\n\nSetting output {name}={value}")
400
- if "GITHUB_ENV" in os.environ:
401
- with open("GITHUB_ENV", "a") as fid:
+ if "GITHUB_OUTPUT" in os.environ:
+ with open("GITHUB_OUTPUT", "a") as fid:
402
fid.write(f"{name}={value}\n")
403
404
0 commit comments