We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1235c91 commit dbda520Copy full SHA for dbda520
.github/workflows/release.yml
@@ -45,6 +45,17 @@ jobs:
45
with:
46
ref: main
47
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
59
- name: Validate version format
60
run: |
61
if ! echo "$TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
@@ -62,11 +73,6 @@ jobs:
62
73
fi
63
74
echo "Tag $TAG does not exist. Proceeding..."
64
75
65
- - name: Xcode version
66
- run: |
67
- xcodebuild -version
68
- swift --version
69
-
70
76
- name: Install sentry-cli
71
77
run: brew install sentry-cli
72
78
0 commit comments