Merge pull request #4168 from kiwix/Fixes#4128

Changed the website, and Nightly APKs name.
This commit is contained in:
Kelson 2025-01-19 17:05:16 +01:00 committed by GitHub
commit bcc6ac88ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ jobs:
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}
UNIVERSAL_RELEASE_APK: app/build/outputs/apk/standalone/*universal*.apk
ARCHIVE_NAME: kiwix-${{ github.event.release.tag_name }}.apk
ARCHIVE_NAME: org.kiwix.kiwixmobile.standalone-${{ github.event.release.tag_name }}.apk
KIWIX_ANDROID_RELEASE_DATE: ${{ env.KIWIX_ANDROID_RELEASE_DATE }}
run: |
./gradlew assembleStandalone

View File

@ -103,7 +103,7 @@ class AppConfigurer {
}
private fun setNameForNightlyUniversalApk(): String =
"kiwix-universal-${getCurrentDate()}.apk"
"org.kiwix.kiwixmobile.standalone-universal-${getCurrentDate()}.apk"
private fun getCurrentDate() =
Date().let(SimpleDateFormat("yyyy-MM-dd", Locale.ROOT)::format)