From 6af1909527103c46ff906b2d6bbada75b99c195b Mon Sep 17 00:00:00 2001 From: gouri-panda Date: Sun, 3 Dec 2023 01:06:39 +0530 Subject: [PATCH] Fixes a small bug in the apk dir variable --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d770d8247..cf7cb34c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: ARCHIVE_NAME: kiwix-${{ github.event.release.tag_name }}.apk run: | ./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/ # This is temporary, once we will publish 3.7.0 then we will uncommented this code.