Skip to content

added support for LMS_ESP32_V2 #29

added support for LMS_ESP32_V2

added support for LMS_ESP32_V2 #29

Workflow file for this run

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