Skip to content

Commit cc331f6

Browse files
committed
Fix sha256
1 parent 03c8264 commit cc331f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: |
5757
FORMULA=amesh
5858
VERSION=${{ env.RELEASE_TAG }}
59-
SHA256=`openssl sha256 ${{ env.RELEASE_FILE }}`
59+
SHA256=`openssl sha256 ${{ env.RELEASE_FILE }} | awk '{print $2}'`
6060
ZIP_URL="https://github.com/otiai10/amesh/releases/download/${{ env.RELEASE_TAG }}/${{ env.RELEASE_FILE }}"
6161
curl -XPOST \
6262
-u "otiai10:${{ secrets.PERSONAL_ACCESS_TOKEN }}" \

0 commit comments

Comments
 (0)