File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,15 +160,15 @@ jobs:
160
160
- name : Generate checksum
161
161
run : |
162
162
cd "${{ github.workspace }}/output/"
163
- sha256sum *.apk > ./ checksums.txt
163
+ find . -name ' *.apk' -type f -exec sha256sum {} \; > checksums.txt
164
164
echo "::notice::$(cat ./checksums.txt)"
165
165
166
166
167
167
- name : Create release and upload
168
168
run : |
169
169
gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}"
170
170
gh release create "v${version}" --title "${{ inputs.title }}" --notes-file ".github/changelog.md" --prerelease="true" --repo MaintainTeam/PipeBenderTests
171
- gh release upload "v${version}" "${{ github.workspace }}/output/{ *.apk, checksums.txt} " --repo MaintainTeam/PipeBenderTests
171
+ gh release upload "v${version}" "${{ github.workspace }}/output/echo $(echo $(find . -name ' *.apk' -type f -exec basename \{} \;) checksums.txt) " --repo MaintainTeam/PipeBenderTests
172
172
173
173
- name : Archive reports for job
174
174
uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments