We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39d08bd commit 888397fCopy full SHA for 888397f
1 file changed
.github/workflows/build-and-release.yml
@@ -248,8 +248,8 @@ jobs:
248
run: |
249
cd release-artifacts
250
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
+ sha256sum SpeedTest-${VERSION}-x64.zip | tr 'a-f' 'A-F' > SpeedTest-${VERSION}-x64.zip.sha256
+ sha256sum SpeedTest-${VERSION}-ARM64.zip | tr 'a-f' 'A-F' > SpeedTest-${VERSION}-ARM64.zip.sha256
253
254
# Create combined checksum.txt file
255
echo "SHA256 Checksums for SpeedTest Plugin v${VERSION}" > checksum.txt
0 commit comments