Skip to content

Commit

Permalink
FileSystemDsc: Update pipeline deploy step (#17)
Browse files Browse the repository at this point in the history
- FileSystemDsc
  - Update pipeline deploy step to correctly download build artifact.
  • Loading branch information
johlju authored May 29, 2021
1 parent 16b75e6 commit 28df95a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Minor changes to pipeline files.
- Update build configuration to use Pester advanced build configuration.
- Update pipeline to user Sampler GitHub tasks.
- Update pipeline deploy step to correctly download build artifact.

### Fixed

Expand Down
7 changes: 3 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,12 @@ stages:
pool:
vmImage: 'ubuntu 16.04'
steps:
- task: DownloadBuildArtifacts@0
- task: DownloadPipelineArtifact@2
displayName: 'Download Build Artifact'
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'output'
downloadPath: '$(Build.SourcesDirectory)'
artifactName: $(buildArtifactName)
targetPath: '$(Build.SourcesDirectory)/$(buildArtifactName)'
- task: PowerShell@2
name: publishRelease
displayName: 'Publish Release'
Expand Down

0 comments on commit 28df95a

Please sign in to comment.