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 9ec0821 commit 85150c6
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ jobs:
- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Install Build tools
run: sdkmanager "build-tools:34.0.0"

run: |
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
sudo chmod +x /usr/local/bin/apktool
sudo chmod +x /usr/local/bin/apktool.jar
- name: Install Apktool
run: |
wget "https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool"
Expand Down Expand Up @@ -59,7 +71,6 @@ jobs:
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
# override default build-tools version (29.0.3) -- optional
BUILD_TOOLS_VERSION: "34.0.0"

- uses: kaisugi/[email protected]
Expand Down Expand Up @@ -118,7 +129,7 @@ jobs:
dart pub get
dart compile exe lib/main.dart -o build
cd $GITHUB_WORKSPACE
./zapstore-cli/build publish pokey
APKSIGNER_PATH=$ANDROID_SDK_ROOT/build-tools/34.0.0/apksigner ./zapstore-cli/build publish pokey

0 comments on commit 85150c6

Please sign in to comment.