Correct sha256 extension

This commit is contained in:
Philipp Holzer 2021-09-03 21:31:12 +02:00
parent 14050ea67b
commit 60fd083ea0
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 4 additions and 4 deletions

View File

@ -385,10 +385,10 @@ steps:
-cvjf ./build/$ARTIFACT
- # calculate SHA256 checksum
- cd ./build
- sha256sum "$ARTIFACT" > "$ARTIFACT.sha256"
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
- ls -lh
- # output the sha256 sum for checking
- cat "$ARTIFACT.sha256"
- cat "$ARTIFACT.sum256"
- sha256sum "$ARTIFACT"
- name: Upload artifacts
image: alpine
@ -484,10 +484,10 @@ steps:
-cvjf ./build/$ARTIFACT
- # calculate SHA256 checksum
- cd ./build
- sha256sum "$ARTIFACT" > "$ARTIFACT.sha256"
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
- ls -lh
- # output the sha256 sum for checking
- cat "$ARTIFACT.sha256"
- cat "$ARTIFACT.sum256"
- sha256sum "$ARTIFACT"
- name: Upload artifacts
image: alpine