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 953cbd4 commit a5dfcb0Copy full SHA for a5dfcb0
.github/workflows/build_py_tools.yml
@@ -24,6 +24,11 @@ jobs:
24
with:
25
files: |
26
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
32
33
build-pytools-binaries:
34
name: Build python tools binaries for ${{ matrix.os }}
@@ -58,6 +63,11 @@ jobs:
58
63
DISTPATH: pytools-${{ matrix.TARGET }}
59
64
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
60
65
steps:
66
67
68
+ for file in ${{ needs.find-changed-tools.outputs.all_changed_files }}; do
69
70
61
71
- name: Checkout repository
62
72
uses: actions/checkout@v3
73
0 commit comments