We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49199a9 commit 86cfc46Copy full SHA for 86cfc46
1 file changed
.github/workflows/scripts/install-and-build-with-sdk.sh
@@ -229,6 +229,14 @@ find_latest_swift_version() {
229
230
local android_sdk_checksum=""
231
if [[ "$INSTALL_ANDROID" == true ]]; then
232
+ log "Android Swift SDK releases_json: ${releases_json}"
233
+ echo "$releases_json" | jq -r --arg version "$latest_version" '
234
+ .[]
235
+ | select(.name == $version)
236
+ | .platforms[]
237
+ | select(.platform == "android-sdk")
238
+ '
239
+
240
android_sdk_checksum=$(echo "$releases_json" | jq -r --arg version "$latest_version" '
241
.[]
242
| select(.name == $version)
0 commit comments