File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2828 - name : Build
2929 env :
3030 GITHUB_TOKEN : ${{ secrets.PUSH_TOKEN }}
31+ GIT_AUTHOR_EMAIL : ${{ secrets.PUSH_EMAIL }}
32+ GIT_COMMITTER_EMAIL : ${{ secrets.PUSH_EMAIL }}
3133 IDF_BRANCH : ${{ matrix.idf_branch }}
3234 run : bash ./tools/cron.sh
3335 - name : Upload archive
Original file line number Diff line number Diff line change 1313 - name : Handle Event
1414 env :
1515 GITHUB_TOKEN : ${{ secrets.PUSH_TOKEN }}
16+ GIT_AUTHOR_EMAIL : ${{ secrets.PUSH_EMAIL }}
17+ GIT_COMMITTER_EMAIL : ${{ secrets.PUSH_EMAIL }}
1618 run : bash ./tools/repository_dispatch.sh
1719 - name : Upload archive
1820 uses : actions/upload-artifact@v1
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ if [ $? -ne 0 ]; then exit 1; fi
2020source ./tools/install-esp-idf.sh
2121if [ $? -ne 0 ]; then exit 1; fi
2222
23- TARGETS=" esp32c3 esp32s2 esp32"
23+ if [ -z $TARGETS ]; then
24+ TARGETS=" esp32c3 esp32s2 esp32"
25+ fi
2426
2527echo $( git -C $AR_COMPS /arduino describe --all --long) > version.txt
2628
You can’t perform that action at this time.
0 commit comments