feat: add MQTT repeater support, web config panel, and EastMesh-specific firmware workflows

This commit is contained in:
Jared Dohrman
2026-04-09 15:00:53 +10:00
parent 2ab5f5128f
commit 98fe78a379
27 changed files with 3412 additions and 103 deletions
@@ -1,4 +1,4 @@
name: Build Companion Firmwares
name: Build Companion WiFi Firmwares
permissions:
contents: write
@@ -7,7 +7,7 @@ on:
workflow_dispatch:
push:
tags:
- 'companion-*'
- 'companion-wifi-v*'
jobs:
@@ -24,19 +24,19 @@ jobs:
uses: ./.github/actions/setup-build-environment
- name: Build Firmwares
run: /usr/bin/env bash build.sh build-companion-firmwares
run: /usr/bin/env bash build.sh build-companion-wifi-firmwares
- name: Upload Workflow Artifacts
uses: actions/upload-artifact@v7
with:
name: companion-firmwares
name: companion-wifi-firmwares
path: out
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: Companion Firmware ${{ env.RELEASE_VERSION }}
name: Companion WiFi Firmware ${{ env.RELEASE_VERSION }}
body: ""
draft: true
files: out/*
@@ -1,42 +0,0 @@
name: Build Repeater Firmwares
permissions:
contents: write
on:
workflow_dispatch:
push:
tags:
- 'repeater-*'
jobs:
build:
runs-on: ubuntu-latest
env:
OFFICIAL_MESHCORE_VERSION: ${{ vars.OFFICIAL_MESHCORE_VERSION }}
steps:
- name: Clone Repo
uses: actions/checkout@v6
- name: Setup Build Environment
uses: ./.github/actions/setup-build-environment
- name: Build Firmwares
run: /usr/bin/env bash build.sh build-repeater-firmwares
- name: Upload Workflow Artifacts
uses: actions/upload-artifact@v7
with:
name: repeater-firmwares
path: out
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: Repeater Firmware ${{ env.RELEASE_VERSION }}
body: ""
draft: true
files: out/*
@@ -1,4 +1,4 @@
name: Build Room Server Firmwares
name: Build Repeater MQTT Firmwares
permissions:
contents: write
@@ -7,7 +7,7 @@ on:
workflow_dispatch:
push:
tags:
- 'room-server-*'
- 'repeater-mqtt-eastmesh-*'
jobs:
@@ -24,19 +24,19 @@ jobs:
uses: ./.github/actions/setup-build-environment
- name: Build Firmwares
run: /usr/bin/env bash build.sh build-room-server-firmwares
run: /usr/bin/env bash build.sh build-repeater-mqtt-firmwares
- name: Upload Workflow Artifacts
uses: actions/upload-artifact@v7
with:
name: room-server-firmwares
name: repeater-mqtt-firmwares
path: out
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: Room Server Firmware ${{ env.RELEASE_VERSION }}
name: Repeater MQTT Firmware ${{ env.RELEASE_VERSION }}
body: ""
draft: true
files: out/*