Skip to content

Commit 8f26d8e

Browse files
authored
Merge pull request #125184 from gijsbecht/patch-2
Add missing download build artifact step
2 parents 104e9bc + bc0334a commit 8f26d8e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

articles/azure-functions/functions-how-to-azure-devops.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,14 @@ variables:
202202
# Agent VM image name
203203
vmImageName: 'ubuntu-latest'
204204
205-
- task: AzureFunctionApp@1 # Add this at the end of your file
205+
- task: DownloadBuildArtifacts@1 # Add this at the end of your file
206+
inputs:
207+
buildType: 'current'
208+
downloadType: 'single'
209+
artifactName: 'drop'
210+
itemPattern: '**/*.zip'
211+
downloadPath: '$(System.ArtifactsDirectory)'
212+
- task: AzureFunctionApp@1
206213
inputs:
207214
azureSubscription: <Azure service connection>
208215
appType: functionAppLinux # default is functionApp

0 commit comments

Comments
 (0)