We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b051a97 commit 4fc4d8dCopy full SHA for 4fc4d8d
.github/workflows/release.yml
@@ -168,7 +168,8 @@ jobs:
168
run: |
169
gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}"
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/echo $(echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt)" --repo MaintainTeam/PipeBenderTests
+ cd "${{ github.workspace }}/output/"
172
+ gh release upload "v${version}" "echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt" --repo MaintainTeam/PipeBenderTests
173
174
- name: Archive reports for job
175
uses: actions/upload-artifact@v4
0 commit comments