#c# #powershell #.net-core #yaml #github-actions
#c# #powershell #.net-core #yaml #github-действия
Вопрос:
У меня есть автономный github runner на моей виртуальной машине Windows. Он работал нормально, и внезапно я начал получать:
dotnet-install: Downloading link: https://dotnetcli.azureedge.net/dotnet/Sdk/3.1.101/dotnet-sdk-3.1.101-win-x64.zip
dotnet-install: Cannot download: https://dotnetcli.azureedge.net/dotnet/Sdk/3.1.101/dotnet-sdk-3.1.101-win-x64.zip
dotnet-install: Downloading legacy link: https://dotnetcli.azureedge.net/dotnet/Sdk/3.1.101/dotnet-dev-win-x64.3.1.101.zip
dotnet-install: Cannot download: https://dotnetcli.azureedge.net/dotnet/Sdk/3.1.101/dotnet-dev-win-x64.3.1.101.zip
Could not find/download: ".NET Core SDK" with version = 3.1.101
Refer to: https://aka.ms/dotnet-os-lifecycle for information on .NET Core support
At C:UsersMediaparkactions-runner_work_actionsactionssetup-dotnetv1externalsinstall-dotnet.ps1:687 char:5
throw "Could not find/download: `"$assetName`" with version = $Sp ...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CategoryInfo : OperationStopped: (Could not find/...ET Core support:String) [], RuntimeException
FullyQualifiedErrorId : Could not find/download: ".NET Core SDK" with version = 3.1.101
Refer to: https://aka.ms/dotnet-os-lifecycle for information on .NET Core support
Error: The process 'C:WindowsSystem32WindowsPowerShellv1.0powershell.exe' failed with exit code 1
Мой сценарий развертывания:
on:
push:
branches: [ master ]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Dotnet Publish
run: dotnet publish -c Release -o deploy```
what could have happened here? It was working fine and now it doesn't?
Комментарии:
1. Проверяя URL-адреса загрузки, двоичные файлы недоступны там, где они были размещены. Здесь есть два пути: либо есть обновленное действие для настройки dotnet, либо версия sdk, которую вы использовали, больше не доступна с помощью этого действия. В качестве альтернативы, SDK там больше не размещен, и вы можете открыть ошибку в репозитории действий здесь
2. Ссылка для меня тоже не работала час назад, но теперь она снова работает. Может быть, попробуйте еще раз?