Skip to content

Enhance README with non destructive option for the cable modification #62

Enhance README with non destructive option for the cable modification

Enhance README with non destructive option for the cable modification #62

name: Build Firmware
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build Firmware
run: pio run -e esp32-s3-devkitc-1
- name: Upload Firmware Artifact
uses: actions/upload-artifact@v4
with:
name: firmware-factory
path: .pio/build/esp32-s3-devkitc-1/firmware-factory.bin
- name: Upload OTA Firmware Artifact
uses: actions/upload-artifact@v4
with:
name: firmware-ota
path: .pio/build/esp32-s3-devkitc-1/firmware.bin