Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-hk-low-vol-snapshot-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ jobs:
with:
name: ${{ steps.build.outputs.artifact_name }}
path: ${{ steps.build.outputs.artifact_dir }}
if-no-files-found: ignore
if-no-files-found: error
retention-days: 14

- name: Upload generated input snapshot
Expand All @@ -363,7 +363,7 @@ jobs:
with:
name: ${{ steps.build.outputs.generated_input_name }}
path: ${{ steps.build.outputs.generated_input_dir }}
if-no-files-found: ignore
if-no-files-found: error
retention-days: 14

- name: Append job summary
Expand Down
2 changes: 1 addition & 1 deletion tests/test_build_hk_low_vol_snapshot_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ def test_hk_low_vol_snapshot_artifact_workflow_keeps_generation_diagnostics():
assert "failed_symbols_preview" in workflow
assert '${generation_label} factor snapshot generation failed; see generation_summary.json' in workflow
assert "if: always() && steps.build.outputs.generated_input_name != ''" in workflow
assert "if-no-files-found: ignore" in workflow
assert "if-no-files-found: error" in workflow
Loading