Skip to content

Commit 888397f

Browse files
committed
Fix SHA256 hashes to uppercase for ptrun-lint compatibility
1 parent 39d08bd commit 888397f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ jobs:
248248
run: |
249249
cd release-artifacts
250250
VERSION="${{ steps.get_version.outputs.VERSION }}"
251-
sha256sum SpeedTest-${VERSION}-x64.zip > SpeedTest-${VERSION}-x64.zip.sha256
252-
sha256sum SpeedTest-${VERSION}-ARM64.zip > SpeedTest-${VERSION}-ARM64.zip.sha256
251+
sha256sum SpeedTest-${VERSION}-x64.zip | tr 'a-f' 'A-F' > SpeedTest-${VERSION}-x64.zip.sha256
252+
sha256sum SpeedTest-${VERSION}-ARM64.zip | tr 'a-f' 'A-F' > SpeedTest-${VERSION}-ARM64.zip.sha256
253253
254254
# Create combined checksum.txt file
255255
echo "SHA256 Checksums for SpeedTest Plugin v${VERSION}" > checksum.txt

0 commit comments

Comments
 (0)