Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
asandikci authored Jan 21, 2025
1 parent 4bf9044 commit b051a97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ jobs:
- name: Generate checksum
run: |
cd "${{ github.workspace }}/output/"
sha256sum *.apk > ./checksums.txt
find . -name '*.apk' -type f -exec sha256sum {} \; > checksums.txt
echo "::notice::$(cat ./checksums.txt)"
- name: Create release and upload
run: |
gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}"
gh release create "v${version}" --title "${{ inputs.title }}" --notes-file ".github/changelog.md" --prerelease="true" --repo MaintainTeam/PipeBenderTests
gh release upload "v${version}" "${{ github.workspace }}/output/{*.apk,checksums.txt}" --repo MaintainTeam/PipeBenderTests
gh release upload "v${version}" "${{ github.workspace }}/output/echo $(echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt)" --repo MaintainTeam/PipeBenderTests
- name: Archive reports for job
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit b051a97

Please sign in to comment.