From c205e3465ce735045c82792c6f121432f260a38e Mon Sep 17 00:00:00 2001 From: Gouri Panda Date: Fri, 20 Oct 2023 01:09:58 +0530 Subject: [PATCH] Fixed bundle asset issue --- .github/workflows/publish.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1c02afe..3a47b8a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: Retrieving Kiwix Android source code - run: git clone --depth=1 --single-branch --branch Issue#3505 https://github.com/kiwix/kiwix-android.git + run: git clone --depth=1 --single-branch --branch bundle_asset_issue https://github.com/kiwix/kiwix-android.git - name: Copying custom app configuration into Kiwix Android code base run: ./copy_files_to_kiwix_android.sh @@ -39,9 +39,7 @@ jobs: DWDS_HTTP_BASIC_ACCESS_AUTHENTICATION: ${{ secrets.DWDS_HTTP_BASIC_ACCESS_AUTHENTICATION }} run: | cd kiwix-android - ./gradlew download${TAG^}ZimAndPutInAssetFolder - bundle${TAG^}Release - publish${TAG^}ReleaseBundleWithPlayAssetDelivery + eval "./gradlew publish${TAG^}ReleaseBundleWithPlayAssetDelivery" publish_dummy_apk: runs-on: ubuntu-22.04