File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -414,7 +414,12 @@ runs:
414414 ANDROID_SDK_URL="https://github.com/skiptools/swift-android-toolchain/releases/download/${{ steps.setup.outputs.swift-version }}/${SWIFT_SDK_ARTIFACT}.artifactbundle.tar.gz"
415415 elif [[ "${SWIFT_SDK_ID}" =~ "-6.1." || "${SWIFT_SDK_ID}" =~ "-6.2" ]]; then
416416 # 6.2+ no longer includes the API in the artifactbundle name
417- SWIFT_SDK_ARTIFACT="${SWIFT_SDK_ID}-android-${SWIFT_SDK_VERSION}"
417+ if [[ "${SWIFT_SDK_ID}" =~ "-6.2.3" ]]; then
418+ # 6.2.3 uses the new "_android" without a version
419+ SWIFT_SDK_ARTIFACT="${SWIFT_SDK_ID}_android"
420+ else
421+ SWIFT_SDK_ARTIFACT="${SWIFT_SDK_ID}-android-${SWIFT_SDK_VERSION}"
422+ fi
418423 ANDROID_SDK_URL="https://github.com/skiptools/swift-android-toolchain/releases/download/${{ steps.setup.outputs.swift-version }}/${SWIFT_SDK_ARTIFACT}.artifactbundle.tar.gz"
419424 fi
420425
You can’t perform that action at this time.
0 commit comments