From c9ea56a640f4f34aa34c46e6f9d63e4f3077873d Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 3 May 2024 11:03:45 -0700 Subject: [PATCH] devops: stop producing .sha256 files, they are not required anymore (#1570) --- .azure-pipelines/publish.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.azure-pipelines/publish.yml b/.azure-pipelines/publish.yml index d1eaf376..89c5b954 100644 --- a/.azure-pipelines/publish.yml +++ b/.azure-pipelines/publish.yml @@ -55,16 +55,6 @@ extends: env: GPG_PASSPHRASE: $(GPG_PASSPHRASE) # secret variable has to be mapped to an env variable - - bash: | - for file in $(find snapshots -type f); do - echo "processing: $file" - if [[ $file =~ \.(md5|sha1|sha256)$ ]]; then - continue - fi - sha256sum "$file" | cut -f1 -d \ > "$file.sha256" - done - displayName: 'Create .sha256 files' - - task: EsrpRelease@7 inputs: connectedservicename: 'Playwright-ESRP-Azure'