From 1c73b38c3e4ee7a2abe19317eca053a3175b69ac Mon Sep 17 00:00:00 2001 From: Yaksh Bariya Date: Wed, 28 Dec 2022 17:05:25 +0530 Subject: [PATCH] cibootstrap_archives): do not include sha256 sums in release body Although convenient, this seems to have been broken after moving to new environment files of GitHub Actions. I have no idea how GitHub actually parses the file, so I don't know what hack, and how will allow us to have sha256sums on the release body again. In case anyone knows, feel free to open up a PR. Also, for the checksums generations, I'm planning to move this to 'upload-release-action' action only. See https://github.com/termux/upload-release-action/issues/4 --- .github/workflows/bootstrap_archives.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/bootstrap_archives.yml b/.github/workflows/bootstrap_archives.yml index 1160d0070c..3f7102ba89 100644 --- a/.github/workflows/bootstrap_archives.yml +++ b/.github/workflows/bootstrap_archives.yml @@ -48,12 +48,6 @@ jobs: with: name: bootstrap-archives-${{ github.sha }} path: ./ - - name: Get checksums - id: get_checksums - run: | - find . -maxdepth 1 -type f -name "bootstrap-*.zip" -exec sha256sum {} \; | sed "s| ./| |g" | sort -k2 > bootstraps.sha256sum - checksums=$(printf 'SHA-256:\n```\n%s\n```\n' "$(sha256sum *.zip)") - echo "checksums=$checksums" >> $GITHUB_OUTPUT - name: Create new tag id: get_tag run: | @@ -76,7 +70,6 @@ jobs: file_glob: true release_name: "Bootstrap archives for Termux application" tag: ${{ steps.get_tag.outputs.tag_name }} - body: ${{ steps.get_checksums.outputs.checksums }} - name: Publish bootstraps sha256sum to GitHub release uses: termux/upload-release-action@v4.0.0 with: