Skip to content

Commit

Permalink
Improved the naming convention for the dummy AAB file.
Browse files Browse the repository at this point in the history
* The new naming format for the dummy AAB file will be something like `org.kiwix.kiwixcustomAPPNAME_dummy.aab`, where 'APPNAME' will be replaced with the actual app name.
  • Loading branch information
MohitMaliDeveloper committed Oct 20, 2023
1 parent c800c90 commit aca466b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,12 @@ jobs:
id: bundle-path
run: |
BUNDLE_PATH="kiwix-android/custom/build/outputs/bundle/${TAG}Release/*${TAG}*.aab"
FILE_NAME="org.kiwix.kiwixcustom${TAG}_dummy.aab"
echo "::set-output name=bundle_path::$BUNDLE_PATH"
echo "::set-output name=file_name::$FILE_NAME"
- name: Upload APK as an artifact
uses: actions/upload-artifact@v2
with:
name: "Dummy Bundle for play store"
name: ${{ steps.bundle-path.outputs.file_name }}
path: ${{ steps.bundle-path.outputs.bundle_path }}

0 comments on commit aca466b

Please sign in to comment.