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 fcb2d55 commit 4cbfea2Copy full SHA for 4cbfea2
.github/workflows/swift.yml
@@ -31,10 +31,10 @@ jobs:
31
-scheme "SwiftUI-WorkoutApp" \
32
-destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5" \
33
CODE_SIGNING_ALLOWED=NO
34
-
35
- # Тесты
36
- xcodebuild test \
37
- -scheme "SwiftUI-WorkoutApp" \
38
- -testPlan "SwiftUI-WorkoutApp" \
39
- -destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5" \
40
- CODE_SIGNING_ALLOWED=NO
+
+ - name: Save Build Log
+ run: |
+ xcodebuild build ... 2>&1 | tee build.log
+ echo "BUILD_LOG<<EOF" >> $GITHUB_ENV
+ cat build.log >> $GITHUB_ENV
+ echo "EOF" >> $GITHUB_ENV
0 commit comments