Merge pull request #1165 from nupplaphil/feat/drone_release_followup

Correct sha256 extension
This commit is contained in:
Hypolite Petovan
2021-09-03 16:09:26 -04:00
committed by GitHub

View File

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