File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
name : Check if tools have been changed
11
11
runs-on : ubuntu-20.04
12
12
outputs :
13
- files_changed : ${{ steps.verify-changed-files.outputs.files_changed }}
14
- changed_files : ${{ steps.verify-changed-files.outputs.changed_files }}
13
+ any_changed : ${{ steps.verify-changed-files.outputs.any_changed }}
14
+ all_changed_files : ${{ steps.verify-changed-files.outputs.all_changed_files }}
15
15
steps :
16
16
- name : Checkout repository
17
17
uses : actions/checkout@v3
29
29
name : Build python tools binaries for ${{ matrix.os }}
30
30
runs-on : ${{ matrix.os }}
31
31
needs : find-changed-tools
32
- if : needs.find-changed-tools.outputs.files_changed == 'true'
32
+ if : needs.find-changed-tools.outputs.any_changed == 'true'
33
33
strategy :
34
34
fail-fast : false
35
35
matrix :
You can’t perform that action at this time.
0 commit comments