Skip to content

Commit 3f84a73

Browse files
committed
cat $GITHUB_OUTPUT
1 parent 4bc0970 commit 3f84a73

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/reusable-change-detection.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101
# or when someone triggers a manual workflow run.
102102
- name: Compute changed files
103103
id: changes
104-
run: python Tools/build/compute-changes.py "${branch_base}" "${branch_pr}"
104+
run: |
105+
python Tools/build/compute-changes.py "${branch_base}" "${branch_pr}"
106+
cat $GITHUB_OUTPUT
105107
106108
- name: Compute hash for config cache key
107109
id: config-hash

Tools/build/compute-changes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ def compute_changes():
4949
if outputs.run_win_msi:
5050
print("Build Windows MSI")
5151

52+
print(outputs)
53+
5254
write_github_output(outputs)
5355

5456

0 commit comments

Comments
 (0)