我们有一个在linux代理Ubuntu-16.04上运行的管道,镜像版本为20200119.1
https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1604-README.md
它运行一个bash蛋糕任务,并返回
Restoring NuGet package Cake.0.36.0.
GET https://api.nuget.org/v3-flatcontainer/cake/0.36.0/cake.0.36.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/cake/0.36.0/cake.0.36.0.nupkg 12ms
Installing Cake 0.36.0.
Adding package 'Cake.0.36.0' to folder '/home/vsts/work/1/s/build/tools'
Added package 'Cake.0.36.0' to folder '/home/vsts/work/1/s/build/tools'
Error: The assembly name is invalid.
##[error]Bash exited with code '1'.
Finishing: Bash Script我认为这个问题与这个Cake on OSX fails with "error: the assembly name is invalid"有关
因此,基本上现在代理的Mono 6.8.0,它遇到了这个问题。有没有办法解决这个问题?
发布于 2020-02-03 19:56:54
此问题已在bash任务更新到3.163.1版本后修复。现在它下载了Cake 0.37.0,管道运行起来没有问题。
https://stackoverflow.com/questions/59989955
复制相似问题