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:
Zaiming (Stone) Shi 2022-02-28 18:52:43 +01:00
parent a4523995d2
commit fe597cd3f9
1 changed files with 0 additions and 12 deletions

View File

@ -266,18 +266,6 @@ jobs:
--pkgtype "${PACKAGE}" \ --pkgtype "${PACKAGE}" \
--arch "${ARCH}" \ --arch "${ARCH}" \
--builder "ghcr.io/emqx/emqx-builder/4.4-5:${OTP}-${SYSTEM}" --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 - uses: actions/upload-artifact@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with: