Skip to content

Commit 550e2a5

Browse files
committed
update pipeline
1 parent ee3dc2b commit 550e2a5

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

azure-pipelines.yml

+7-10
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,15 @@ stages:
6464
clean: all
6565
steps:
6666
- checkout: none
67-
68-
- task: DownloadBuildArtifacts@0
69-
inputs:
70-
buildType: 'current' # Options: current, specific
71-
downloadType: 'single' # Choose whether to download a single artifact or all artifacts of a specific build. Options: single, specific
72-
artifactName: drop # Required when downloadType == Single
73-
itemPattern: '**/*.nupkg' # Optional
74-
67+
68+
- download: current
69+
patterns: '**/*.nupkg'
70+
displayName: Download build artifact
71+
7572
- task: DotNetCoreCLI@2
7673
displayName: 'dotnet push'
7774
inputs:
7875
command: push
7976
publishVstsFeed: '3356baca-d7d8-497c-a5fa-ebd93f79f7c7'
80-
packagesToPush: '$(Pipeline.Workspace)/drop/Infocaster.Umbraco.DateFolders*.nupkg'
81-
allowPackageConflicts: true
77+
versioningScheme: byBuildNumber
78+
packagesToPush: '$(Pipeline.Workspace)/**/Infocaster.Umbraco.DateFolders*.nupkg'

0 commit comments

Comments
 (0)