We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eda04c commit 5500d15Copy full SHA for 5500d15
.github/workflows/build-and-lint.yml
@@ -33,6 +33,19 @@ jobs:
33
- name: Select Xcode
34
run: sudo xcode-select -s /Applications/Xcode_16.4.app
35
36
+ - name: Read Carthage Version
37
+ run: |
38
+ CURRENT_XCODE_VERSION=$(xcodebuild -version | grep "Build version" | cut -d' ' -f3)
39
+ echo "CURRENT_XCODE_VERSION=$CURRENT_XCODE_VERSION" >> $GITHUB_ENV
40
+
41
+ - name: Read Xcode Version
42
43
44
45
46
+ - name: List Xcode Simulators
47
+ run: xcrun simctl list --json
48
49
- name: Build with Carthage
50
run: ./Scripts/carthage.sh build --no-skip-current || true
51
0 commit comments