Add committer email so Arduino CLA does not complain

This commit is contained in:
me-no-dev 2021-05-31 20:37:51 +03:00
parent 83bb8d1e7d
commit b6a46e7509
3 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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