From 4ed1be7a7f69563936f78c7f4cf183ce201bb195 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 11 Sep 2024 11:48:25 +1000 Subject: [PATCH] Fix incorrect APK path in upload script --- .buildkite/commands/release-upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/commands/release-upload.sh b/.buildkite/commands/release-upload.sh index 96ab64cd4..50e57a3c5 100755 --- a/.buildkite/commands/release-upload.sh +++ b/.buildkite/commands/release-upload.sh @@ -13,5 +13,5 @@ bundle exec fastlane run configure_apply echo "--- :android: Upload to Play Store" bundle exec fastlane upload_build_to_play_store \ - apk_path:"$ARTIFACT_PATH/simplenote.apk" \ + apk_path:"$ARTIFACT_PATH" \ "beta:${1:-true}" # use first call param, default to true for safety