Skip to content

Commit dbda520

Browse files
authored
Update release workflow to use Xcode 16.4 for Swift 6.1 support (#298)
1 parent 1235c91 commit dbda520

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ jobs:
4545
with:
4646
ref: main
4747

48+
- name: Show available Xcodes
49+
run: ls /Applications
50+
51+
- name: Select Xcode 16.4
52+
run: sudo xcode-select -s "/Applications/Xcode_16.4.app/Contents/Developer"
53+
54+
- name: Confirm Xcode version
55+
run: |
56+
xcodebuild -version
57+
swift --version
58+
4859
- name: Validate version format
4960
run: |
5061
if ! echo "$TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
@@ -62,11 +73,6 @@ jobs:
6273
fi
6374
echo "Tag $TAG does not exist. Proceeding..."
6475
65-
- name: Xcode version
66-
run: |
67-
xcodebuild -version
68-
swift --version
69-
7076
- name: Install sentry-cli
7177
run: brew install sentry-cli
7278

0 commit comments

Comments
 (0)