ci: delete ci step which creates sha256sum
the latest build commands create sha256 sum right after the build e.g. command `make emqx-zip` creates two files: - emqx-<version>.zip - emqx-<version>.zip.sha256
This commit is contained in:
parent
a4523995d2
commit
fe597cd3f9
|
@ -266,18 +266,6 @@ jobs:
|
|||
--pkgtype "${PACKAGE}" \
|
||||
--arch "${ARCH}" \
|
||||
--builder "ghcr.io/emqx/emqx-builder/4.4-5:${OTP}-${SYSTEM}"
|
||||
- name: create sha256
|
||||
working-directory: source
|
||||
env:
|
||||
PROFILE: ${{ matrix.profile}}
|
||||
run: |
|
||||
if [ -d _packages/$PROFILE ]; then
|
||||
cd _packages/$PROFILE
|
||||
for var in $(ls emqx-* ); do
|
||||
sudo bash -c "echo $(sha256sum $var | awk '{print $1}') > $var.sha256"
|
||||
done
|
||||
cd -
|
||||
fi
|
||||
- uses: actions/upload-artifact@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
|
|
Loading…
Reference in New Issue