NET的gitlab CI管道

时间:2020-06-16 07:44:42

标签: .net gitlab

我是git-lab和.net的新手,在实现如下所示的CI管道时,在Nuget软件包上遇到了错误

  -- TEST API
         -- Controllers
         -- Repository 
         -- Models
         -- Test.csproj
   -- readme.md
   --  test.sln

我的.yml文件由以下几行组成

image: mcr.microsoft.com/dotnet/core/sdk:3.1


stages:
    - build
    
before_script:
   - "dotnet restore"


build:
    stage: build
    script:
        - "dotnet build"

上述执行失败,因为无法连接到Nuget存储库。

error : Unable to load the service index for source https://api.nuget.org/v3/index.json

0 个答案:

没有答案