1
0
mirror of synced 2026-08-05 23:16:54 +00:00

devops: stop producing .sha256 files, they are not required anymore (#1570)

This commit is contained in:
Yury Semikhatsky
2024-05-03 11:03:45 -07:00
committed by GitHub
parent e4c427aa75
commit c9ea56a640
-10
View File
@@ -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'