tray hint decimal digits fix for Power & Data #52
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/[email protected] | |
| 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 -m | |
| # - name: Publish build | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: OpenHardwareMonitor | |
| # path: | | |
| # OpenHardwareMonitor/bin/net472 | |
| # - name: Publish Lib build | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: OpenHardwareMonitorLib | |
| # path: | | |
| # OpenHardwareMonitorLib/bin |