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 4bc0970 commit 3f84a73Copy full SHA for 3f84a73
.github/workflows/reusable-change-detection.yml
@@ -101,7 +101,9 @@ jobs:
101
# or when someone triggers a manual workflow run.
102
- name: Compute changed files
103
id: changes
104
- run: python Tools/build/compute-changes.py "${branch_base}" "${branch_pr}"
+ run: |
105
+ python Tools/build/compute-changes.py "${branch_base}" "${branch_pr}"
106
+ cat $GITHUB_OUTPUT
107
108
- name: Compute hash for config cache key
109
id: config-hash
Tools/build/compute-changes.py
@@ -49,6 +49,8 @@ def compute_changes():
49
if outputs.run_win_msi:
50
print("Build Windows MSI")
51
52
+ print(outputs)
53
+
54
write_github_output(outputs)
55
56
0 commit comments