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
commit b30f7d3055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

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