Skip to content

fix lamp stays on

fix lamp stays on #49

Workflow file for this run

name: CI - Build Firmware
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build (upesy_wroom)
run: pio run -e upesy_wroom
- name: Upload firmware artifact
uses: actions/upload-artifact@v4
with:
name: firmware-upesy_wroom
path: .pio/build/upesy_wroom/firmware.bin