ci: revert to openssl digest for sha256 sum on mac
This commit is contained in:
parent
9ff0899b75
commit
5171d3811c
|
@ -202,7 +202,8 @@ jobs:
|
|||
exit 1
|
||||
fi
|
||||
rm -rf emqx
|
||||
sha256sum ./_packages/${{ matrix.profile }}/$pkg_name | head -c64 > ./_packages/${{ matrix.profile }}/$pkg_name.sha256
|
||||
#sha256sum ./_packages/${{ matrix.profile }}/$pkg_name | head -c64 > ./_packages/${{ matrix.profile }}/$pkg_name.sha256
|
||||
openssl dgst -sha256 ./_packages/${{ matrix.profile }}/$pkg_name | awk '{print $2}' > ./_packages/${{ matrix.profile }}/$pkg_name.sha256
|
||||
- uses: actions/upload-artifact@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
|
|
Loading…
Reference in New Issue