Skip to content

Commit 2c12083

Browse files
committed
fix
1 parent dcc6f01 commit 2c12083

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cron_build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
name: Check if deploy is needed for ${{ inputs.idf_branch }}
2525
runs-on: ubuntu-latest
2626
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 }}
2929
steps:
3030
- uses: actions/checkout@v4
3131
with:
3232
ref: ${{ inputs.lib_builder_branch }}
3333

34-
- name: Generate matrix
35-
id: gen-matrix
34+
- name: Check deploy and generate variables
35+
id: check
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
run: |
@@ -43,7 +43,7 @@ jobs:
4343
echo "targets_list=$targets_list" >> $GITHUB_OUTPUT
4444
4545
build-libs:
46-
name: Build with IDF ${{ inputs.idf_branch }} for ${{ matrix.target }}
46+
name: Build for ${{ matrix.target }} (${{ inputs.idf_branch }})
4747
runs-on: ubuntu-latest
4848
#if: needs.check-if-needed.outputs.deploy_needed == '1'
4949
needs: check-if-needed
File renamed without changes.

0 commit comments

Comments
 (0)