Skip to content

Commit a5dfcb0

Browse files
committed
Update build_py_tools.yml
1 parent 953cbd4 commit a5dfcb0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build_py_tools.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
with:
2525
files: |
2626
tools/get.py
27+
- name: List all changed files
28+
run: |
29+
for file in ${{ steps.verify-changed-files.outputs.all_changed_files }}; do
30+
echo "$file was changed"
31+
done
2732
2833
build-pytools-binaries:
2934
name: Build python tools binaries for ${{ matrix.os }}
@@ -58,6 +63,11 @@ jobs:
5863
DISTPATH: pytools-${{ matrix.TARGET }}
5964
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
6065
steps:
66+
- name: List all changed files
67+
run: |
68+
for file in ${{ needs.find-changed-tools.outputs.all_changed_files }}; do
69+
echo "$file was changed"
70+
done
6171
- name: Checkout repository
6272
uses: actions/checkout@v3
6373
with:

0 commit comments

Comments
 (0)