Skip to content

Commit

Permalink
Clean workflow slightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodit committed Apr 5, 2022
1 parent 72bf85b commit 3edbb81
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/apk-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Download Snapchat APK
run: wget -O snapchat.apk "$APK_URL"
run: wget -q -O snapchat.apk "$APK_URL"
env:
APK_URL: ${{ secrets.APK_URL }}

Expand All @@ -39,8 +39,9 @@ jobs:
DEXSEARCH_VERSION: ${{ secrets.DEXSEARCH_VERSION }}

- name: Download Android Platform
run: wget -q -O android.zip "https://dl.google.com/android/repository/platform-32_r01.zip"
- run: unzip -qq android.zip
run: |
wget -q -O android.zip "https://dl.google.com/android/repository/platform-32_r01.zip"
unzip -qq android.zip
- name: Generate Bindings
run: java -jar dexsearch.jar -i snapchat.apk -s snap.ds -o bindings.json -a "android-12/android.jar"
Expand Down

0 comments on commit 3edbb81

Please sign in to comment.