summaryrefslogtreecommitdiff
path: root/azure-pipelines/templates/release-bundles.yml
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines/templates/release-bundles.yml')
-rw-r--r--azure-pipelines/templates/release-bundles.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/azure-pipelines/templates/release-bundles.yml b/azure-pipelines/templates/release-bundles.yml
index 9c5a48b96..f9f9fdcdd 100644
--- a/azure-pipelines/templates/release-bundles.yml
+++ b/azure-pipelines/templates/release-bundles.yml
@@ -5,7 +5,14 @@ steps:
- ${{ if eq(parameters.CalculateChecksums, true) }}:
- bash: |
set -ex
- cd bundles
+ cd build/bundles
+
+ # CPack generates sha256, but with a slightly different name than
+ # our own convention. Also, because we rename files, the content
+ # might be out of date. To be safe, we remove it and replace it
+ # with our own version.
+ rm -f *.sha256
+
for i in $(ls); do
openssl dgst -r -md5 -hex $i > $i.md5sum
openssl dgst -r -sha1 -hex $i > $i.sha1sum
@@ -15,5 +22,5 @@ steps:
- task: PublishBuildArtifacts@1
displayName: 'Publish bundles'
inputs:
- PathtoPublish: bundles/
+ PathtoPublish: build/bundles/
ArtifactName: bundles