0

尝试部署文物,出现以下错误结束:部署天青Blob存储结束了与错误

The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters.

之前和之后我跑两个脚本我构建应用程序在AppVeyor:

cd $env:APPVEYOR_BUILD_FOLDER\patch; 
npm install; 
node patch-project-json.js $env:APPVEYOR_BUILD_FOLDER\src\Project1\project.json $env:APPVEYOR_BUILD_VERSION; 
node patch-project-json.js $env:APPVEYOR_BUILD_FOLDER\src\Project2\project.json $env:APPVEYOR_BUILD_VERSION; 
node patch-project-json.js $env:APPVEYOR_BUILD_FOLDER\src\Project3\project.json $env:APPVEYOR_BUILD_VERSION; 


cd $env:APPVEYOR_BUILD_FOLDER 
dotnet restore 

dotnet publish .\src\Project1 --output $env:APPVEYOR_BUILD_FOLDER\deploy\Project1 --configuration Release --no-build; 
dotnet publish .\src\Project2 --output $env:APPVEYOR_BUILD_FOLDER\deploy\Project2 --configuration Release --no-build; 
dotnet publish .\src\Project3 --output $env:APPVEYOR_BUILD_FOLDER\deploy\Project3 --configuration Release --no-build 

正如你所看到的,我使用this设置在版本文件基于$env:APPVEYOR_BUILD_VERSION。我不知道这是否是相关信息。所以在成功构建和发布之后,我想将一个工件上传到blob存储。

回答

0

原来我在Storage access key条目的部署设置中有错别字;)