Add committer email so Arduino CLA does not complain
This commit is contained in:
parent
83bb8d1e7d
commit
b6a46e7509
3 changed files with 7 additions and 1 deletions
2
.github/workflows/cron.yml
vendored
2
.github/workflows/cron.yml
vendored
|
|
@ -28,6 +28,8 @@ jobs:
|
|||
- name: Build
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
|
||||
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
||||
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
||||
IDF_BRANCH: ${{ matrix.idf_branch }}
|
||||
run: bash ./tools/cron.sh
|
||||
- name: Upload archive
|
||||
|
|
|
|||
2
.github/workflows/repository_dispatch.yml
vendored
2
.github/workflows/repository_dispatch.yml
vendored
|
|
@ -13,6 +13,8 @@ jobs:
|
|||
- name: Handle Event
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
|
||||
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
||||
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
||||
run: bash ./tools/repository_dispatch.sh
|
||||
- name: Upload archive
|
||||
uses: actions/upload-artifact@v1
|
||||
|
|
|
|||
4
build.sh
4
build.sh
|
|
@ -20,7 +20,9 @@ if [ $? -ne 0 ]; then exit 1; fi
|
|||
source ./tools/install-esp-idf.sh
|
||||
if [ $? -ne 0 ]; then exit 1; fi
|
||||
|
||||
TARGETS="esp32c3 esp32s2 esp32"
|
||||
if [ -z $TARGETS ]; then
|
||||
TARGETS="esp32c3 esp32s2 esp32"
|
||||
fi
|
||||
|
||||
echo $(git -C $AR_COMPS/arduino describe --all --long) > version.txt
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue