Skip to content

Commit

Permalink
Fix zapstore
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Oct 24, 2024
1 parent 7b8104c commit 154b193
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,19 @@ jobs:

- name: Install Apktool
run: |
# Download apktool.jar
curl -L -o apktool.jar https://raw.githubusercontent.com/iBotPeaches/Apktool/master/apktool.jar
# Create a wrapper script
echo -e '#!/bin/sh\njava -jar $(pwd)/apktool.jar "$@"' > apktool
chmod +x apktool
# Move the script to /usr/local/bin
sudo mv apktool /usr/local/bin/
wget "https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool"
wget "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.4.1.jar"
mv apktool_2.4.1.jar apktool.jar
sudo cp apktool /usr/local/bin
sudo cp apktool.jar /usr/local/bin
cd /usr/local/bin
sudo chmod +x apktool
sudo chmod +x apktool.jar
sudo apt-get install -y zipalign
sudo apt install openjdk-11-jdk-headless
sudo apt install openjdk-8-jdk-headless
sudo apt upgrade
sudo apt update
- name: Verify Apktool Installation
run: apktool --version
Expand Down

0 comments on commit 154b193

Please sign in to comment.