File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ jobs:
24
24
name : Check if deploy is needed for ${{ inputs.idf_branch }}
25
25
runs-on : ubuntu-latest
26
26
outputs :
27
- deploy_needed : ${{ steps.gen-matrix .outputs.deploy_needed }}
28
- targets_list : ${{ steps.gen-matrix .outputs.targets_list }}
27
+ deploy_needed : ${{ steps.check .outputs.deploy_needed }}
28
+ targets_list : ${{ steps.check .outputs.targets_list }}
29
29
steps :
30
30
- uses : actions/checkout@v4
31
31
with :
32
32
ref : ${{ inputs.lib_builder_branch }}
33
33
34
- - name : Generate matrix
35
- id : gen-matrix
34
+ - name : Check deploy and generate variables
35
+ id : check
36
36
env :
37
37
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
38
38
run : |
43
43
echo "targets_list=$targets_list" >> $GITHUB_OUTPUT
44
44
45
45
build-libs :
46
- name : Build with IDF ${{ inputs.idf_branch }} for ${{ matrix.target }}
46
+ name : Build for ${{ matrix.target }} ( ${{ inputs.idf_branch }})
47
47
runs-on : ubuntu-latest
48
48
# if: needs.check-if-needed.outputs.deploy_needed == '1'
49
49
needs : check-if-needed
File renamed without changes.
You can’t perform that action at this time.
0 commit comments