From 5d7105152dae50e90f02d9207f478594f69f8998 Mon Sep 17 00:00:00 2001 From: James Clancey Date: Mon, 25 Oct 2021 14:38:03 -0800 Subject: [PATCH] Fix CI --- .github/workflows/dev.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 60151c6f..e4da2c37 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -33,7 +33,7 @@ jobs: run: | $ProgressPreference = 'SilentlyContinue' Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile dotnet-install.ps1 - & .\dotnet-install.ps1 -Version 6.0.100-rc.2.21478.37 -InstallDir "$env:ProgramFiles\dotnet\" -Verbose + & .\dotnet-install.ps1 -Version 6.0.100-rtm.21521.3 -InstallDir "$env:ProgramFiles\dotnet\" -Verbose & dotnet --list-sdks - name: Install Visual Studio Preview @@ -59,8 +59,12 @@ jobs: - name: Install Maui Workload shell: pwsh run: | - & dotnet workload update --from-rollback-file https://aka.ms/dotnet/maui/main.json --source https://aka.ms/dotnet6/nuget/index.json - & dotnet workload install maui --skip-manifest-update --source https://aka.ms/dotnet6/nuget/index.json + & dotnet workload install android ios maccatalyst tvos macos maui wasm-tools ` + --from-rollback-file https://aka.ms/dotnet/maui/main.json ` + --source https://aka.ms/dotnet6/nuget/index.json ` + --source https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-runtime-6f411658/nuget/v3/index.json ` + --source https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-1ec2e17f/nuget/v3/index.json + - name: Restore Comet-Nuget.sln