Skip to content

Commit 1ea03e5

Browse files
authored
[GHA] Leftover of sha256 storage (openvinotoolkit#29198)
Signed-off-by: Alina Kladieva <alina.kladieva@intel.com>
1 parent a4bfef7 commit 1ea03e5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/store_artifacts/store_artifacts.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,10 @@ def main():
134134
if github_server: # If running from GHA context
135135
# TODO: write an exact job link, but it's not trivial to get
136136
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:
137+
workflow_link_file = storage / 'workflow_link.txt'
138+
with open(workflow_link_file, 'w') as file:
138139
file.write(workflow_link)
140+
store_checksums(workflow_link_file)
139141

140142
if not error_found:
141143
latest_artifacts_for_branch = artifact_utils.get_latest_artifacts_link(storage_dir, args.storage_root,

0 commit comments

Comments
 (0)