Skip to content

Commit 85ed70e

Browse files
committed
Fix artifact naming in Release pipeline for BcContainerHelper
1 parent bab7b51 commit 85ed70e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.azuredevops/pipelines/Release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ extends:
4545
- name: ob_outputDirectory
4646
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT/module'
4747
- name: ob_artifactBaseName
48-
value: BCContainerHelper_Module
48+
value: BCContainerHelper
4949
steps:
5050
- task: PowerShell@2
5151
displayName: 'Prepare Module'
@@ -73,15 +73,15 @@ extends:
7373
value: BCContainerHelper_Zip
7474
steps:
7575
- download: current
76-
artifact: BCContainerHelper_Module
76+
artifact: BCContainerHelper
7777
displayName: 'Download BcContainerHelper Artifact'
7878

7979
- task: PowerShell@2
8080
displayName: 'Create Zip File of Module'
8181
inputs:
8282
targetType: 'filePath'
8383
filePath: '$(Build.SourcesDirectory)/.azuredevops/scripts/CreateZipFile.ps1'
84-
arguments: "-ModulePath '$(Pipeline.Workspace)/BCContainerHelper_Module' -OutputDirectory '$(ob_outputDirectory)'"
84+
arguments: "-ModulePath '$(Pipeline.Workspace)/BCContainerHelper' -OutputDirectory '$(ob_outputDirectory)'"
8585
pwsh: true
8686

8787
- task: AzureCLI@2
@@ -108,13 +108,13 @@ extends:
108108
value: BCContainerHelper_PSGallery
109109
steps:
110110
- download: current
111-
artifact: BCContainerHelper_Module
111+
artifact: BCContainerHelper
112112
displayName: 'Download BcContainerHelper Artifact'
113113

114114
- task: PowerShell@2
115115
displayName: 'Publish to PowerShell Gallery'
116116
inputs:
117117
targetType: 'filePath'
118118
filePath: '$(Build.SourcesDirectory)/.azuredevops/scripts/PublishToPSGallery.ps1'
119-
arguments: "-ModulePath '$(Pipeline.Workspace)/BCContainerHelper_Module' -ApiKey '$(BCContainerHelperPSGalleryApiKey)'"
119+
arguments: "-ModulePath '$(Pipeline.Workspace)/BCContainerHelper' -ApiKey '$(BCContainerHelperPSGalleryApiKey)'"
120120
pwsh: true

0 commit comments

Comments
 (0)