We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bfef7 commit 1ea03e5Copy full SHA for 1ea03e5
.github/actions/store_artifacts/store_artifacts.py
@@ -134,8 +134,10 @@ def main():
134
if github_server: # If running from GHA context
135
# TODO: write an exact job link, but it's not trivial to get
136
workflow_link = f"{github_server}/{os.getenv('GITHUB_REPOSITORY')}/actions/runs/{os.getenv('GITHUB_RUN_ID')}"
137
- with open(storage / 'workflow_link.txt', 'w') as file:
+ workflow_link_file = storage / 'workflow_link.txt'
138
+ with open(workflow_link_file, 'w') as file:
139
file.write(workflow_link)
140
+ store_checksums(workflow_link_file)
141
142
if not error_found:
143
latest_artifacts_for_branch = artifact_utils.get_latest_artifacts_link(storage_dir, args.storage_root,
0 commit comments