File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 5
5
# Pattern matched against refs/tags
6
6
tags :
7
7
- ' *'
8
+ pull_request :
9
+ branches :
10
+ - ' *'
8
11
9
12
jobs :
10
13
Release :
11
14
name : Release XCFramework
12
15
runs-on : macos-15
13
16
env :
17
+ LC_ALL : en_US.UTF-8
14
18
CODESIGN_KEY_BASE64 : " ${{ secrets.CODESIGN_KEY_BASE64 }}"
15
19
DEVELOPER_DIR : /Applications/Xcode_16.0.app
16
20
strategy :
Original file line number Diff line number Diff line change 16
16
name : Cocoapods Lint
17
17
runs-on : macos-15
18
18
env :
19
+ LC_ALL : en_US.UTF-8
19
20
DEVELOPER_DIR : /Applications/Xcode_16.0.app
20
21
steps :
21
22
- name : Checkout
42
43
name : Cocoapods Demo
43
44
runs-on : macos-15
44
45
env :
46
+ LC_ALL : en_US.UTF-8
45
47
DEVELOPER_DIR : /Applications/Xcode_16.0.app
46
48
WORKSPACE_NAME : SDWebImage.xcworkspace
47
49
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
96
98
name : Unit Test
97
99
runs-on : macos-15
98
100
env :
101
+ LC_ALL : en_US.UTF-8
99
102
DEVELOPER_DIR : /Applications/Xcode_16.0.app
100
103
WORKSPACE_NAME : SDWebImage.xcworkspace
101
104
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
@@ -162,6 +165,7 @@ jobs:
162
165
name : Build Library
163
166
runs-on : macos-15
164
167
env :
168
+ LC_ALL : en_US.UTF-8
165
169
DEVELOPER_DIR : /Applications/Xcode_16.0.app
166
170
PROJECT_NAME : SDWebImage.xcodeproj
167
171
SCHEME_NAME : SDWebImage
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
set -e
4
+ set -x
4
5
set -o pipefail
5
6
6
7
XCODE_VERSION=$( xcodebuild -version | head -n 1| awk -F ' ' ' {print $2}' )
You can’t perform that action at this time.
0 commit comments