windows: embed LibreHardwareMonitorLib for better sensors detection

- Updated GitHub Actions release workflow to set up .NET and build the LHM executable.
- Modified Makefile to include a conditional build step for the .NET executable on Windows.
This commit is contained in:
henrygd
2025-08-01 20:04:40 -04:00
parent 57bfe72486
commit 8c36dd1caa
9 changed files with 797 additions and 5 deletions

View File

@@ -31,6 +31,16 @@ jobs:
with:
go-version: "^1.22.1"
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: Build .NET LHM executable for Windows sensors
run: |
dotnet build -c Release ./beszel/internal/agent/lhm/beszel_lhm.csproj
shell: bash
- name: GoReleaser beszel
uses: goreleaser/goreleaser-action@v6
with: