Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
No directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdm committed Jul 14, 2019
1 parent e06ce1b commit fe8c540
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
inputs:
sourceFolder: '$(Build.SourcesDirectory)/target/release'
contents: 'wallet713'
targetFolder: '$(Build.BinariesDirectory)/wallet713'
targetFolder: '$(Build.BinariesDirectory)'
- task: ArchiveFiles@2
displayName: Gather assets
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
Expand Down
2 changes: 1 addition & 1 deletion .ci/macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
inputs:
sourceFolder: '$(Build.SourcesDirectory)/target/release'
contents: 'wallet713'
targetFolder: '$(Build.BinariesDirectory)/wallet713'
targetFolder: '$(Build.BinariesDirectory)'
- task: ArchiveFiles@2
displayName: Gather assets
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
Expand Down
6 changes: 3 additions & 3 deletions .ci/windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ steps:
inputs:
sourceFolder: '$(Build.SourcesDirectory)\target\release'
contents: 'wallet713.exe'
targetFolder: '$(Build.BinariesDirectory)\wallet713'
targetFolder: '$(Build.BinariesDirectory)'
- task: ArchiveFiles@2
displayName: Gather assets
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['CI_JOB'], 'release' ))
inputs:
rootFolderOrFile: '$(Build.BinariesDirectory)\wallet713'
rootFolderOrFile: '$(Build.BinariesDirectory)\wallet713.exe'
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)\wallet613-$(build.my_tag)-$(build.platform).zip'
archiveFile: '$(Build.ArtifactStagingDirectory)\wallet713-$(build.my_tag)-$(build.platform).zip'
- script: |
powershell -Command "get-filehash -algorithm sha256 $(Build.ArtifactStagingDirectory)\wallet713-$(build.my_tag)-$(build.platform).zip | Format-List | Out-String | ForEach-Object { $_.Trim() } > $(Build.ArtifactStagingDirectory)\wallet713-$(build.my_tag)-$(build.platform)-sha256sum.txt"
displayName: Create Checksum
Expand Down

0 comments on commit fe8c540

Please sign in to comment.