Visual Studio Team Services Release/Deploy fails - "No package found with specified pattern"
Asked Answered
S

5

20

I'm trying to implement continuous integration and continuous deployment to my DEV Azure App Service. I'm using the hosted agent on Visual Studio Team Services. The "Deploy Website to Azure" step on my Release definition keeps failing with the error "No package found with specified pattern". Any ideas?

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

Suggestibility answered 26/10, 2016 at 16:32 Comment(0)
T
27

"More than one package matched with specified pattern. Please restrain the search patern [sic]." error usually occurs when 2 or more packages were found by the task since you entered "xxx\*.zip" in "Package or Folder" setting of the task. So you just need to update it to specify the detailed package name. Similar question here: Deploy azure website and webjobs in same sln using VSO - Error - There can be only one.

And for you original issue, you can also fix it by creating a new build definition with "Visual Studio" selected on "Build" tab and "Azure WebApp" selected on "Deployment" tab. This will create a build definition with required arugments added.

Tuberculosis answered 28/10, 2016 at 9:3 Comment(3)
This resolved it. It was my webjob project which was causing it to find multiple packages.Suggestibility
see: #35385992Bassesalpes
Could you please explain more how do you update it to specify the detailed package name and what are you looking for a zip file that is to be created or one that already is created?Ghat
B
7

Had the same problem few hours ago. This how I was able to resolve the issue:

  1. Ensure MSBuild arguments in Build solution step are: /p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactstagingdirectory)\"

  2. Add step Azure App Service Deployment: ARM

  3. Configure subscription and App Service Name
  4. Package or Folder should be $(build.artifactstagingdirectory)\**\*.zip

Steps:

Step definitions

Azure App Service Deployment Configuration:

enter image description here

Backstop answered 26/10, 2016 at 20:36 Comment(3)
I'm getting closer thanks to your suggestion. However, now I get a "More than one package matched with specified pattern. Please restrain the search patern." on the deploy step. Any suggestions?Suggestibility
Mb you can try to explicitly name the package (both in build and deploy steps) like @Eddie - MSFT suggested: $(build.artifactstagingdirectory)\MyAwesomeAppPackage.zipBackstop
Thanks for this! Turns out markdown was eliminating required slashes. Have cleaned that up.Hurryscurry
S
2

if you are using the default azure app service deployment task, add this to end of YAML file:

- task: DotNetCoreCLI@2
  displayName: 'dotnet publish $(buildConfiguration)'
  inputs:
    command: publish
    publishWebProjects: True
    arguments: '--configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)'
    zipAfterPublish: True

- task: PublishBuildArtifacts@1
  displayName: 'publish artifacts'

I had the same issue and this worked for me:

# ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://learn.microsoft.com/azure/devops/pipelines/languages/dotnet-core

trigger:
- master

pool:
  vmImage: 'ubuntu-latest'

variables:
  buildConfiguration: 'Release'

steps:
- script: dotnet build --configuration $(buildConfiguration)
  displayName: 'dotnet build $(buildConfiguration)'

- task: DotNetCoreCLI@2
  displayName: 'dotnet publish $(buildConfiguration)'
  inputs:
    command: publish
    publishWebProjects: True
    arguments: '--configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)'
    zipAfterPublish: True

- task: PublishBuildArtifacts@1
  displayName: 'publish artifacts'
Strontianite answered 16/5, 2019 at 18:13 Comment(1)
I was able to add the missing task and fix things by adding a publish task before my deploy task in Azure DevOps, via tasks > .NET Core and choosing publish from the command drop down.Durazzo
E
0

use the visual designer while creating build pipeline in azure devops,though your code sits at azure repos and github,

then select source

finally pick respective templates to your application

Eec answered 28/12, 2018 at 17:19 Comment(0)
F
0

Make sure you didn't tick "Skip artifacts download"

Felicle answered 22/3, 2019 at 14:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.