github actions: attach checksums to bootstrap archives release info

This commit is contained in:
Leonid Pliushch 2021-09-17 22:02:25 +03:00
parent 2b63f877c5
commit ac317d7202
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with 4 additions and 0 deletions

View File

@ -36,6 +36,9 @@ jobs:
with:
name: bootstrap-archives-${{ github.sha }}
path: ./
- name: Get checksums
id: get_checksums
run: echo "::set-output name=checksums::$(sha256sum *.zip)"
- name: Create new tag
id: get_tag
run: |
@ -58,3 +61,4 @@ jobs:
file_glob: true
release_name: "Bootstrap archives for Termux application"
tag: ${{ steps.get_tag.outputs.tag_name }}
body: "```${{ steps.get_checksums.outputs.checksums }}```"