diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 8cb061a..850e5af 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -20,9 +20,11 @@ jobs: - uses: actions/checkout@v1 - name: NuGet Setup - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: | + 7.0.x + 8.0.x - name: "NuGet Add Source Organization" run: if ("${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }}" -ne "") { dotnet nuget add source --username ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_USERNAME }} --password ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json" } diff --git a/Build/.nuke/build.schema.json b/Build/.nuke/build.schema.json index 220ffb9..dc7f567 100644 --- a/Build/.nuke/build.schema.json +++ b/Build/.nuke/build.schema.json @@ -126,6 +126,9 @@ ] } }, + "UnlistNuget": { + "type": "boolean" + }, "Verbosity": { "type": "string", "description": "Logging verbosity during build execution. Default is 'Normal'",