Skip to content

Commit 4fc4d8d

Browse files
authored
fix paths (again)
1 parent b051a97 commit 4fc4d8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ jobs:
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/echo $(echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt)" --repo MaintainTeam/PipeBenderTests
171+
cd "${{ github.workspace }}/output/"
172+
gh release upload "v${version}" "echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt" --repo MaintainTeam/PipeBenderTests
172173
173174
- name: Archive reports for job
174175
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)