Fixes a small bug in the apk dir variable

This commit is contained in:
gouri-panda 2023-12-03 01:06:39 +05:30 committed by Emmanuel Engelhart
parent f6d86fb7d9
commit 2a3d479509
No known key found for this signature in database
GPG Key ID: 120B30D020B553D3

View File

@ -36,7 +36,7 @@ jobs:
ARCHIVE_NAME: kiwix-${{ github.event.release.tag_name }}.apk ARCHIVE_NAME: kiwix-${{ github.event.release.tag_name }}.apk
run: | run: |
./gradlew assembleRelease ./gradlew assembleRelease
cp "$UNIVERSAL_RELEASE_APK" "$ARCHIVE_NAME" cp ${UNIVERSAL_RELEASE_APK} ${ARCHIVE_NAME}
scp -P 30022 -vrp -i ssh_key -o StrictHostKeyChecking=no "$ARCHIVE_NAME" ci@master.download.kiwix.org:/data/download/release/kiwix-android/ scp -P 30022 -vrp -i ssh_key -o StrictHostKeyChecking=no "$ARCHIVE_NAME" ci@master.download.kiwix.org:/data/download/release/kiwix-android/
# This is temporary, once we will publish 3.7.0 then we will uncommented this code. # This is temporary, once we will publish 3.7.0 then we will uncommented this code.