Skip to content

Commit aa376c1

Browse files
authored
Handle 6.3 release (#17)
* Handle 6.3 release * Fix checking for 6.3
1 parent 81ccf96 commit aa376c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: ['ubuntu-24.04', 'macos-15-intel']
15-
swift-version: ['6.2', 'nightly-6.3', 'nightly-main']
15+
swift-version: ['6.2', '6.3', 'nightly-6.3', 'nightly-main']
1616
ndk-version: ['27', 'latest']
1717
steps:
1818
- name: Checkout Action

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ runs:
232232
# trim the preceeding "swift-" from the beginning, because
233233
# we add it back in the SWIFT_VERSION_ID
234234
SWIFT_VERSION="${snapshot_tag//swift-/}"
235-
else
235+
elif [[ "${SWIFT_VERSION}" == 6.2* ]]; then
236236
# match "6.0" to "6.0.3"
237237
# DO NOT match "6.1" to "6.1-DEVELOPMENT-SNAPSHOT-2025-03-07-a"
238238
SWIFT_VERSION=$(cat ${SWIFT_VERSIONS_FILE} | ( grep -v -- '-SNAPSHOT' || true ) | ( grep -- "^${SWIFT_VERSION}" || true ) | head -n 1)

0 commit comments

Comments
 (0)