Comment out .NET 8 runtime setup step #15
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
| # ------------------------------------------------------------------------------ | |
| # <auto-generated> | |
| # | |
| # This code was generated. | |
| # | |
| # - To turn off auto-generation set: | |
| # | |
| # [OurGitHubActions (AutoGenerate = false)] | |
| # | |
| # - To trigger manual generation invoke: | |
| # | |
| # nuke --generate-configuration GitHubActions_continuous --host GitHubActions | |
| # | |
| # </auto-generated> | |
| # ------------------------------------------------------------------------------ | |
| # This workflow is generated by the nuke configuration on mitch-capper/httrack-windows. It runs on the main httrack repo however. | |
| env: | |
| NUKE_TELEMETRY_OPTOUT: 1 | |
| name: continuous | |
| on: | |
| push: | |
| branches-ignore: | |
| - trash | |
| workflow_dispatch: # This allows manual triggering of the workflow | |
| jobs: | |
| continuous: | |
| name: Run | |
| runs-on: ${{matrix.BaseImage}} | |
| strategy: | |
| matrix: | |
| BaseImage: [windows-latest] | |
| #Configuration: [Debug, Release] | |
| Configuration: [Release] | |
| #Arch: [x86, x64] | |
| Arch: [x64] | |
| exclude: | |
| - Arch: x86 | |
| BaseImage: ubuntu-latest | |
| - Arch: x86 | |
| BaseImage: ubuntu-18.04 | |
| env: | |
| NUKE_BaseImage: ${{matrix.BaseImage}} | |
| NUKE_Configuration: ${{matrix.Configuration}} | |
| NUKE_Arch: ${{matrix.Arch}} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| # repository: mitchcapper/httrack-windows | |
| - name: Cache .nuke/temp, ~/.nuget/packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| .nuke/temp | |
| ~/.nuget/packages | |
| key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }} | |
| # - name: Ensure .NET 8 runtime is available | |
| # uses: actions/setup-dotnet@v3 | |
| # with: | |
| # dotnet-version: '8.0.x' | |
| # package-type: 'dotnet-version' | |
| - name: Show installed .NET runtimes (debug) | |
| run: dotnet --list-runtimes | |
| - name: Run './build.cmd Pack' | |
| run: ./build.cmd Pack | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: httrack-${{matrix.BaseImage}}-${{matrix.Configuration}}-${{matrix.Arch}} | |
| path: final | |