Skip to content

Commit

Permalink
Update Azure DevOps DownloadBuildArtifacts to v1 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
X-Guardian authored Oct 23, 2023
1 parent ff26093 commit 477b13b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update Azure DevOps DownloadBuildArtifacts to v1.

## [1.3.2] - 2023-04-21

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ stages:
vmImage: 'windows-2019'
timeoutInMinutes: 0
steps:
- task: DownloadBuildArtifacts@0
- task: DownloadBuildArtifacts@1
displayName: 'Download Build Artifact'
inputs:
buildType: 'current'
Expand Down Expand Up @@ -95,7 +95,7 @@ stages:
echo "##vso[task.setvariable variable=RepositoryName;isOutput=true]$repositoryName"
name: dscBuildVariable
displayName: 'Set Environment Variables'
- task: DownloadBuildArtifacts@0
- task: DownloadBuildArtifacts@1
displayName: 'Download Build Artifact'
inputs:
buildType: 'current'
Expand Down Expand Up @@ -144,14 +144,14 @@ stages:
echo "##vso[task.setvariable variable=RepositoryName;isOutput=true]$repositoryName"
name: dscBuildVariable
displayName: 'Set Environment Variables'
- task: DownloadBuildArtifacts@0
- task: DownloadBuildArtifacts@1
displayName: 'Download Build Artifact'
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: $(buildArtifactName)
downloadPath: '$(Build.SourcesDirectory)'
- task: DownloadBuildArtifacts@0
- task: DownloadBuildArtifacts@1
displayName: 'Download Test Artifact'
inputs:
buildType: 'current'
Expand Down Expand Up @@ -188,7 +188,7 @@ stages:
pool:
vmImage: 'ubuntu-latest'
steps:
- task: DownloadBuildArtifacts@0
- task: DownloadBuildArtifacts@1
displayName: 'Download Build Artifact'
inputs:
buildType: 'current'
Expand Down

0 comments on commit 477b13b

Please sign in to comment.