我有一个ASP。NET核心项目,并使用DevOps构建管道正常构建。但是,版本的发布总是会失败,并出现以下错误:
错误:找不到具有指定模式的包:D:\a\r1\a***。拉链
我已经检查了这个和这个Q/A,但无法找到解决方案。
这是我的azure。管道。yml
文件:
pool:
vmImage: 'vs2017-win2016'
variables:
buildConfiguration: 'Release'
steps:
- script: dotnet build ".\src\MyProject.sln" --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
- script: dotnet publish ".\src\MyProject.sln" --configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)
displayName: 'dotnet publish $(buildConfiguration)'
- task: PublishBuildArtifacts@1
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: 'drop'
publishLocation: 'Container'
日志
初始化作业:
2018-11-02T05:31:14.7337716Z ##[section]Starting: Initialize job
2018-11-02T05:31:14.7338264Z Current agent version: '2.141.1'
2018-11-02T05:31:14.7365208Z Prepare release directory.
2018-11-02T05:31:14.7379296Z ReleaseId=4, TeamProjectId=ea66a316-xxxx-xxxx-xxxx-866fc594b83f, ReleaseDefinitionName=New release pipeline
2018-11-02T05:31:14.7461870Z Release folder: D:\a\r1\a
2018-11-02T05:31:14.7620235Z Environment variables available are below. Note that these environment variables can be referred to in the task (in the ReleaseDefinition) by replacing "_" with "." e.g. AGENT_NAME environment variable can be referenced using Agent.Name in the ReleaseDefinition:
[AGENT_HOMEDIRECTORY] --> [C:\agents\2.141.1]
[AGENT_ID] --> [2]
[AGENT_JOBNAME] --> [Release]
[AGENT_MACHINENAME] --> [factoryvm-az50]
[AGENT_NAME] --> [Hosted Agent]
[AGENT_OS] --> [Windows_NT]
[AGENT_OSARCHITECTURE] --> [X64]
[AGENT_RELEASEDIRECTORY] --> [D:\a\r1\a]
[AGENT_ROOTDIRECTORY] --> [D:\a]
[AGENT_SERVEROMDIRECTORY] --> [C:\agents\2.141.1\externals\vstsom]
[AGENT_TEMPDIRECTORY] --> [D:\a\_temp]
[AGENT_TOOLSDIRECTORY] --> [C:/hostedtoolcache/windows]
[AGENT_VERSION] --> [2.141.1]
[AGENT_WORKFOLDER] --> [D:\a]
[AZURE_HTTP_USER_AGENT] --> [VSTS_70c99791-xxxx-xxxx-xxxx-5af143aa8244_release_1_4_4_2]
[BUILD_BUILDID] --> [25]
[BUILD_BUILDNUMBER] --> [20181102.1]
[BUILD_BUILDURI] --> [vstfs:///Build/Build/25]
[BUILD_DEFINITIONID] --> [1]
[BUILD_DEFINITIONNAME] --> [MyProjectName]
[BUILD_PROJECTID] --> [ea66a316-xxxx-xxxx-xxxx-866fc594b83f]
[BUILD_PROJECTNAME] --> [MyProjectName]
[BUILD_REPOSITORY_ID] --> [38420003-xxxx-xxxx-xxxx-6fd304fd324c]
[BUILD_REPOSITORY_NAME] --> [MyProjectName]
[BUILD_REPOSITORY_PROVIDER] --> [TfsGit]
[BUILD_REQUESTEDFOR] --> [MyUserName]
[BUILD_REQUESTEDFORID] --> [b08e40ca-xxxx-xxxx-xxxx-2b6fc6e350f8]
[BUILD_SOURCEBRANCH] --> [refs/heads/master]
[BUILD_SOURCEBRANCHNAME] --> [master]
[BUILD_SOURCEVERSION] --> [xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx]
[BUILD_TYPE] --> [Build]
[MSDEPLOY_HTTP_USER_AGENT] --> [VSTS_70c99791-xxxx-xxxx-xxxx-5af143aa8244_release_1_4_4_2]
[PARAMETERS_CONNECTEDSERVICENAME] --> [9d9a15a6-xxxx-xxxx-xxxx-2cb822e6a67e]
[PARAMETERS_DOCKERNAMESPACE] --> []
[PARAMETERS_DOCKERREPOSITORY] --> []
[PARAMETERS_IMAGESOURCE] --> [Registry]
[PARAMETERS_RUNTIMESTACK] --> []
[PARAMETERS_WEBAPPKIND] --> [app]
[PARAMETERS_WEBAPPNAME] --> [myprojectname]
[RELEASE_ARTIFACTS_DROP_BUILDID] --> [25]
[RELEASE_ARTIFACTS_DROP_BUILDNUMBER] --> [20181102.1]
[RELEASE_ARTIFACTS_DROP_BUILDURI] --> [vstfs:///Build/Build/25]
[RELEASE_ARTIFACTS_DROP_DEFINITIONID] --> [1]
[RELEASE_ARTIFACTS_DROP_DEFINITIONNAME] --> [myprojectname]
[RELEASE_ARTIFACTS_DROP_PROJECTID] --> [ea66a316-xxxx-xxxx-xxxx-866fc594b83f]
[RELEASE_ARTIFACTS_DROP_PROJECTNAME] --> [MyProjectName]
[RELEASE_ARTIFACTS_DROP_REPOSITORY_ID] --> [38420003-xxxx-xxxx-xxxx-6fd304fd324c]
[RELEASE_ARTIFACTS_DROP_REPOSITORY_NAME] --> [MyProjectName]
[RELEASE_ARTIFACTS_DROP_REPOSITORY_PROVIDER] --> [TfsGit]
[RELEASE_ARTIFACTS_DROP_REQUESTEDFOR] --> [MyUserName]
[RELEASE_ARTIFACTS_DROP_REQUESTEDFORID] --> [b08e40ca-xxxx-xxxx-xxxx-2b6fc6e350f8]
[RELEASE_ARTIFACTS_DROP_SOURCEBRANCH] --> [refs/heads/master]
[RELEASE_ARTIFACTS_DROP_SOURCEBRANCHNAME] --> [master]
[RELEASE_ARTIFACTS_DROP_SOURCEVERSION] --> [xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx]
[RELEASE_ARTIFACTS_DROP_TYPE] --> [Build]
[RELEASE_ATTEMPTNUMBER] --> [2]
[RELEASE_DEFINITIONENVIRONMENTID] --> [1]
[RELEASE_DEFINITIONID] --> [1]
[RELEASE_DEFINITIONNAME] --> [New release pipeline]
[RELEASE_DEPLOYMENT_REQUESTEDFOR] --> [MyUserName]
[RELEASE_DEPLOYMENT_REQUESTEDFOREMAIL] --> [myemail@mail.com]
[RELEASE_DEPLOYMENT_REQUESTEDFORID] --> [b08e40ca-xxxx-xxxx-xxxx-2b6fc6e350f8]
[RELEASE_DEPLOYMENT_STARTTIME] --> [2018-11-02 05:29:41Z]
[RELEASE_DEPLOYMENTID] --> [8]
[RELEASE_DEPLOYPHASEID] --> [8]
[RELEASE_ENVIRONMENTID] --> [4]
[RELEASE_ENVIRONMENTNAME] --> [Stage 1]
[RELEASE_ENVIRONMENTS_STAGE_1_STATUS] --> [InProgress]
[RELEASE_ENVIRONMENTURI] --> [vstfs:///ReleaseManagement/Environment/4]
[RELEASE_PRIMARYARTIFACTSOURCEALIAS] --> [drop]
[RELEASE_REASON] --> [Manual]
[RELEASE_RELEASEDESCRIPTION] --> [Trying manually]
[RELEASE_RELEASEID] --> [4]
[RELEASE_RELEASENAME] --> [Release-4]
[RELEASE_RELEASEURI] --> [vstfs:///ReleaseManagement/Release/4]
[RELEASE_RELEASEWEBURL] --> [https://dev.azure.com/mycompany/ea66a316-xxxx-xxxx-xxxx-866fc594b83f/_release?releaseId=4&_a=release-summary]
[RELEASE_REQUESTEDFOR] --> [MyUserName]
[RELEASE_REQUESTEDFOREMAIL] --> [myemail@mail.com]
[RELEASE_REQUESTEDFORID] --> [b08e40ca-xxxx-xxxx-xxxx-2b6fc6e350f8]
[RELEASE_SKIPARTIFACTSDOWNLOAD] --> [False]
[RELEASE_TRIGGERINGARTIFACT_ALIAS] --> []
[REQUESTEDFORID] --> [b08e40ca-xxxx-xxxx-xxxx-2b6fc6e350f8]
[SYSTEM] --> [release]
[SYSTEM_ARTIFACTSDIRECTORY] --> [D:\a\r1\a]
[SYSTEM_COLLECTIONID] --> [70c99791-xxxx-xxxx-xxxx-5af143aa8244]
[SYSTEM_CULTURE] --> [en-US]
[SYSTEM_DEFAULTWORKINGDIRECTORY] --> [D:\a\r1\a]
[SYSTEM_ENABLEACCESSTOKEN] --> [False]
[SYSTEM_HOSTTYPE] --> [release]
[SYSTEM_JOBID] --> [22af3160-xxxx-xxxx-xxxx-2001a5e5d480]
[SYSTEM_JOBPARALLELISMTAG] --> [Private]
[SYSTEM_JOBPOSITIONINPHASE] --> [1]
[SYSTEM_PARALLELEXECUTIONTYPE] --> [None]
[SYSTEM_PLANID] --> [12163963-xxxx-xxxx-xxxx-dff7b6858fe8]
[SYSTEM_SERVERTYPE] --> [Hosted]
[SYSTEM_TASKDEFINITIONSURI] --> [https://dev.azure.com/mycompany/]
[SYSTEM_TEAMFOUNDATIONCOLLECTIONURI] --> [https://dev.azure.com/mycompany/]
[SYSTEM_TEAMFOUNDATIONSERVERURI] --> [https://vsrm.dev.azure.com/mycompany/]
[SYSTEM_TEAMPROJECT] --> [MyProjectName]
[SYSTEM_TEAMPROJECTID] --> [ea66a316-xxxx-xxxx-xxxx-866fc594b83f]
[SYSTEM_TIMELINEID] --> [12163963-xxxx-xxxx-xxxx-dff7b6858fe8]
[SYSTEM_TOTALJOBSINPHASE] --> [1]
[SYSTEM_WORKFOLDER] --> [D:\a]
2018-11-02T05:31:15.2649945Z Download all required tasks.
2018-11-02T05:31:15.2814886Z Downloading task: AzureRmWebAppDeployment
2018-11-02T05:31:17.1807839Z ##[section]Finishing: Initialize job
下载工件:
2018-11-02T05:31:17.2269286Z ##[section]Starting: Download Artifacts
2018-11-02T05:31:17.2382502Z Creating artifacts directory: D:\a\r1\a
2018-11-02T05:31:17.2399560Z Created artifacts directory: D:\a\r1\a
2018-11-02T05:31:17.2399678Z Downloading artifact
2018-11-02T05:31:17.2414468Z Starting artifacts download...
2018-11-02T05:31:17.2445323Z Downloading linked artifact drop of type Build...
2018-11-02T05:31:17.2485179Z Ensuring artifact folder D:\a\r1\a\drop exists and is clean.
2018-11-02T05:31:17.2560775Z Preparing to get the list of available artifacts from build
2018-11-02T05:31:17.4683478Z Preparing to download artifact: drop
2018-11-02T05:31:17.4757997Z Artifact Type: ServerDrop
2018-11-02T05:31:17.4758675Z Downloading artifact from file container: #/2728848/drop to target: D:\a\r1\a\drop\drop
2018-11-02T05:31:17.4761540Z Parallel download limit: 4
2018-11-02T05:31:17.4761629Z Download buffer size: 8192
2018-11-02T05:31:17.5861772Z Caching items under 'drop' in the file container...
2018-11-02T05:31:17.6566410Z Caching complete. (70 ms)
2018-11-02T05:31:17.6722228Z Downloading file D:\a\r1\a\drop\drop\appsettings.Development.json
2018-11-02T05:31:17.6960764Z Downloading file D:\a\r1\a\drop\drop\appsettings.json
2018-11-02T05:31:17.6963293Z Downloading file D:\a\r1\a\drop\drop\dotnet-aspnet-codegenerator-design.dll
.
.
.
Lots of other JSON and DLL files.
.
.
.
2018-11-02T05:31:22.7080863Z Download complete.
2018-11-02T05:31:22.7086672Z 123 placed file(s): 122 downloaded, 1 empty
2018-11-02T05:31:22.7087329Z 29 MB downloaded at 5848 KB/sec. Download time: 00:00:05.0380618.
2018-11-02T05:31:22.7115052Z Downloaded linked artifact drop
2018-11-02T05:31:22.7115281Z Finished artifacts download
2018-11-02T05:31:22.7189498Z ##[section]Finishing: Download Artifacts
部署Azure应用程序服务:
2018-11-02T05:31:22.7214141Z ##[section]Starting: Deploy Azure App Service
2018-11-02T05:31:22.7468470Z
==============================================================================
2018-11-02T05:31:22.7468805Z Task : Azure App Service Deploy
2018-11-02T05:31:22.7468901Z Description : Update Azure App Services on Windows, Web App on Linux with built-in images or Docker containers, ASP.NET, .NET Core, PHP, Python or Node.js based Web applications, Function Apps, Mobile Apps, API applications, Web Jobs using Web Deploy / Kudu REST APIs
2018-11-02T05:31:22.7469033Z Version : 3.4.13
2018-11-02T05:31:22.7469089Z Author : Microsoft Corporation
2018-11-02T05:31:22.7469173Z Help : [More information](https://aka.ms/azurermwebdeployreadme)
2018-11-02T05:31:22.7469246Z
==============================================================================
2018-11-02T05:31:23.6141335Z Got connection details for Azure App Service:'myproject'
2018-11-02T05:31:27.9431753Z ##[error]Error: No package found with specified pattern: D:\a\r1\a\**\*.zip
2018-11-02T05:31:29.9576685Z Successfully added release annotation to the Application Insight : myproject
2018-11-02T05:31:33.0440055Z Successfully updated deployment History at https://xxxxxxxxx.scm.azurewebsites.net/api/deployments/4154xxxxxx957
2018-11-02T05:31:33.0615049Z ##[section]Finishing: Deploy Azure App Service
正如每个人都指出的,这个错误是因为没有配置构建任务。你需要把下面的YAML代码放在最后才能使它工作。
- task: PublishBuildArtifacts@1
你可以通过本Azure教程看到错误,我已经指出了准确的时间线,以避免看到完整的视频。
快乐学习编码。
我也有同样的问题,在谷歌搜索后,我找到了这个答案
在最后一刻。yaml文件您需要添加一个附加行。
- task: PublishBuildArtifacts@1
排队等待一个新的构建,你就可以开始了!
我在Azure Devops中创建了一个管道定义,以将角度应用部署到Azure 我已经在管道定义文件中添加了用于发布的步骤,该文件是 azure-pipilines.yml 文件,但错误仍然存在并且发布失败。 错误:找不到具有指定模式的包:d:\a\r1\a***.zip
我在 Azure 开发运营存储库中有一个角度项目,使用开发运营生成管道可以正常生成该项目。但是,该版本的发布始终失败,并显示以下错误: 错误:找不到具有指定模式:D的包:\a\r1\a_SocialMetric 请检查任务中提到的包是否作为构件发布在构建中或前一阶段,并在当前作业中下载。
我已尝试使用Azure DevOps管道(CI/CD)从GitHub部署ARM模板。当我单击deploy按钮时,我得到以下错误。 https://developercommunity.visualstudio.com/content/problem/349729/error-no-package-found-with-specified-pattern-dar1.html ##[错误]错误: 未找
我使用ASP。NET核心,我正在Azure DevOps中构建管道。生成成功。但在发布错误中显示: [错误]错误:未找到具有指定模式的包:D:\a\r1\a***. zip 我已尝试在构建管道中添加以下内容: 但是得到了这样的警告: [警告]目录“/主页/vsts/工作/1/a”为空。不会为构建工件“删除”添加任何内容。 我的构建 yaml 看起来像这样:
我正试图建立我的第一个管道来将web应用程序部署到Azure应用程序服务。我可以通过Visual Studio手动发布该网站,但现在我试图从Azure Repo构建和部署它。构建部分工作正常,没有错误。当我添加部署任务时,问题出现了。部署任务似乎无法找到要部署的文件。 # #[调试]从工具“C:\ Program Files \ dot net \ dot net . exe”收到的退出代码0 <
我在 Azure DevOps 存储库中有一个 ASP.NET 核心项目,使用 DevOps 生成管道可以正常生成该项目。但是,该版本的发布始终失败,并显示以下错误: 找不到具有指定模式的包。< br >检查任务中提到的包是否作为构建或前一阶段中的工件发布,并在当前作业中下载。 更多详情: