Skip to content

Commit

Permalink
add missing upload for x86 gadgets
Browse files Browse the repository at this point in the history
  • Loading branch information
keatonLiu committed Feb 3, 2024
1 parent 34efda7 commit 23ac2b8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,22 @@ jobs:
asset_name: 'hluda-gadget-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm64.so.xz'
asset_content_type: application/octet-stream

- name: Upload android x86 frida-gadget for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-x86/lib/frida/32/frida-gadget.so.xz'
asset_name: 'hluda-gadget-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-x86.so.xz'
asset_content_type: application/octet-stream

- name: Upload android x86_64 frida-gadget for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-x86_64/lib/frida/64/frida-gadget.so.xz'
asset_name: 'hluda-gadget-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-x86_64.so.xz'
asset_content_type: application/octet-stream

0 comments on commit 23ac2b8

Please sign in to comment.