Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
id: checksums
shell: bash
run: |
find . -name '*.apk' -type f -exec sha256sum {} \; > checksums.txt
find . -name '*.apk' -type f -exec bash -c 'sha256sum "$1" | awk -v bn="$(basename $1)" "{print \$1, bn}"' _ {} \; > checksums.txt
echo "checksums_path=checksums.txt" >> "$GITHUB_OUTPUT"

- name: Generate release notes
Expand Down