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
This commit is contained in:
Yaksh Bariya 2022-12-28 17:05:25 +05:30
parent 7cee2f3d37
commit 1c73b38c3e
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 0 additions and 7 deletions

View File

@ -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: