added support for LMS_ESP32_V2 #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: commit SPIKE | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: | |
- master | |
paths: | |
- MicroPython/** | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
uartremote: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: pip install mpy-cross | |
run: pip install mpy-cross | |
- name: run python script | |
run: | | |
cd MicroPython/SPIKE | |
python create_install_file.py | |
- name: Commit report | |
run: | | |
git config --global user.name 'Ste7an' | |
git config --global user.email 'ste7anste7an@users.noreply.github.com' | |
git pull | |
git add . | |
# git diff --exit-code || git commit -m "Updated SPIKE uartremote install script" | |
git commit -m "Updated SPIKE uartremote install script" | |
git push |