Update all projects to .NET 8 framework and many Nuget refs to recent packages #228
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: Build desktop binaries | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| build-package: | |
| name: Build self-contained executables | |
| runs-on: ubuntu-latest | |
| container: mcr.microsoft.com/dotnet/sdk:8.0 | |
| steps: | |
| - name: Check .NET version | |
| run: dotnet --version | |
| - name: Checkout source code | |
| uses: actions/checkout@v3 | |
| - name: Execute Action build-with-plugins for Windows | |
| uses: ./.github/actions/build-with-plugins | |
| id: build-with-plugins-win | |
| with: | |
| platform: windows | |
| platform-short: win | |
| runtime: win-x64 | |
| build-version: 0.0.${{ github.run_number }} | |
| - name: Execute Action build-with-plugins for MacOS | |
| uses: ./.github/actions/build-with-plugins | |
| id: build-with-plugins-mac | |
| with: | |
| platform: mac | |
| platform-short: mac | |
| runtime: osx-x64 | |
| build-version: 0.0.${{ github.run_number }} | |
| - name: Execute Action build-with-plugins for Linux | |
| uses: ./.github/actions/build-with-plugins | |
| id: build-with-plugins-linux | |
| with: | |
| platform: linux | |
| platform-short: linux | |
| runtime: linux-x64 | |
| build-version: 0.0.${{ github.run_number }} |