File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 28
28
- name : Build
29
29
env :
30
30
GITHUB_TOKEN : ${{ secrets.PUSH_TOKEN }}
31
+ GIT_AUTHOR_EMAIL : ${{ secrets.PUSH_EMAIL }}
32
+ GIT_COMMITTER_EMAIL : ${{ secrets.PUSH_EMAIL }}
31
33
IDF_BRANCH : ${{ matrix.idf_branch }}
32
34
run : bash ./tools/cron.sh
33
35
- name : Upload archive
Original file line number Diff line number Diff line change 13
13
- name : Handle Event
14
14
env :
15
15
GITHUB_TOKEN : ${{ secrets.PUSH_TOKEN }}
16
+ GIT_AUTHOR_EMAIL : ${{ secrets.PUSH_EMAIL }}
17
+ GIT_COMMITTER_EMAIL : ${{ secrets.PUSH_EMAIL }}
16
18
run : bash ./tools/repository_dispatch.sh
17
19
- name : Upload archive
18
20
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
20
20
source ./tools/install-esp-idf.sh
21
21
if [ $? -ne 0 ]; then exit 1; fi
22
22
23
- TARGETS=" esp32c3 esp32s2 esp32"
23
+ if [ -z $TARGETS ]; then
24
+ TARGETS=" esp32c3 esp32s2 esp32"
25
+ fi
24
26
25
27
echo $( git -C $AR_COMPS /arduino describe --all --long) > version.txt
26
28
You can’t perform that action at this time.
0 commit comments