Support X870E Apex CPU Sensor Index for BIOS 1804+ #124
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto Build | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: nuget/setup-nuget@v2 | |
| - uses: microsoft/setup-msbuild@v1.1 | |
| with: | |
| msbuild-architecture: x64 | |
| - uses: dorny/paths-filter@v2 | |
| id: changes | |
| with: | |
| filters: | | |
| buildprops: | |
| - 'Directory.Build.props' | |
| - name: NuGet restore | |
| run: nuget restore OpenHardwareMonitor.sln | |
| - name: Build | |
| run: msbuild OpenHardwareMonitor.sln -p:Configuration=Release -p:Platform="Any CPU" -m | |
| - name: Publish build | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: OpenHardwareMonitor | |
| path: | | |
| OpenHardwareMonitor/bin | |
| - name: Publish Lib build | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: OpenHardwareMonitorLib | |
| path: | | |
| OpenHardwareMonitorLib/bin |