name: pull requests on: pull_request: 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: Update version if: steps.changes.outputs.buildprops == 'false' run: | (Get-Content Directory.Build.props) | % { $m = [regex]::match($_, '(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?'); if(!$m.Success -or $m.Groups[4].Success -or $m.Groups[5].Success) { $_; } else { $_ -replace $m.Value, ("{0}.{1}.{2}-ci${{ github.run_number }}" -f $m.Groups[1].Value,$m.Groups[2].Value,([convert]::ToInt32($m.Groups[3].Value)+1)); } } | Set-Content Directory.Build.props - name: NuGet restore run: nuget restore LibreHardwareMonitor.sln - name: Build run: msbuild LibreHardwareMonitor.sln -p:Configuration=Release -m - name: Publish net472 uses: actions/upload-artifact@v4 with: name: LibreHardwareMonitor-net472 path: | bin/Release/net472 - name: Publish netstandard20 uses: actions/upload-artifact@v4 with: name: LibreHardwareMonitorLib-netstandard20 path: | bin/Release/netstandard2.0 - name: Publish net60 uses: actions/upload-artifact@v4 with: name: LibreHardwareMonitorLib-net60 path: | bin/Release/net6.0 - name: Publish net70 uses: actions/upload-artifact@v4 with: name: LibreHardwareMonitorLib-net70 path: | bin/Release/net7.0 - name: Publish nupkg uses: actions/upload-artifact@v4 with: name: LibreHardwareMonitorLib-nupkg path: | bin/Release/LibreHardwareMonitorLib.*.nupkg