Skip to content

Commit b051a97

Browse files
authored
fix paths
1 parent 4bf9044 commit b051a97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,15 +160,15 @@ jobs:
160160
- name: Generate checksum
161161
run: |
162162
cd "${{ github.workspace }}/output/"
163-
sha256sum *.apk > ./checksums.txt
163+
find . -name '*.apk' -type f -exec sha256sum {} \; > checksums.txt
164164
echo "::notice::$(cat ./checksums.txt)"
165165
166166
167167
- name: Create release and upload
168168
run: |
169169
gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}"
170170
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
172172
173173
- name: Archive reports for job
174174
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)