From 2c473614e2e6afc260f22652b4597d09f0b0315f Mon Sep 17 00:00:00 2001 From: arabcoders Date: Mon, 7 Jul 2025 16:28:14 +0300 Subject: [PATCH] remove sha256sum generation --- .github/workflows/native-build.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/native-build.yml b/.github/workflows/native-build.yml index 5934415b..0ec6c4ba 100644 --- a/.github/workflows/native-build.yml +++ b/.github/workflows/native-build.yml @@ -127,7 +127,6 @@ jobs: fi zip -r "release/${ZIP_NAME}" dist/ - sha256sum "release/${ZIP_NAME}" > "release/${ZIP_NAME}.sha256" - name: Upload to GitHub Release if: startsWith(env.TAG_NAME, 'v') @@ -136,6 +135,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ env.TAG_NAME }} - files: | - release/*.zip - release/*.sha256 + files: release/*.zip