File tree 3 files changed +22
-4
lines changed
3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Xcode - Build, Analyze and Test
2
+
3
+ on :
4
+ push :
5
+ branches : ["master"]
6
+ pull_request :
7
+ branches : ["master"]
8
+
9
+ jobs :
10
+ build :
11
+ name : Build, analyze and test default scheme using xcodebuild command
12
+ runs-on : macos-latest
13
+
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v4
17
+ - name : Build, Analyze and Test
18
+ run : xcodebuild clean build analyze test -project ACActionCable.xcodeproj -scheme ACActionCable-Package -destination 'platform=macOS' | xcpretty && exit ${PIPESTATUS[0]}
Original file line number Diff line number Diff line change 8
8
9
9
Pod ::Spec . new do |spec |
10
10
spec . name = 'ACActionCable'
11
- spec . version = '2.1.1 '
11
+ spec . version = '2.1.2 '
12
12
spec . license = { :type => 'MIT' , :file => 'LICENSE' }
13
13
spec . homepage = 'https://github.com/High5Apps/ACActionCable'
14
14
spec . authors = { 'Julian Tigler' => '[email protected] ' , 'Fabian Jäger' => '[email protected] ' }
15
15
spec . summary = 'A well-tested, dependency-free Action Cable client for Rails 6'
16
- spec . source = { :git => 'https://github.com/High5Apps/ACActionCable.git' , :tag => 'v2.1.1 ' }
16
+ spec . source = { :git => 'https://github.com/High5Apps/ACActionCable.git' , :tag => 'v2.1.2 ' }
17
17
spec . swift_version = '5.1'
18
18
spec . ios . deployment_target = '11.0'
19
19
spec . osx . deployment_target = '10.13'
Original file line number Diff line number Diff line change 322
322
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
323
323
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
324
324
MACOSX_DEPLOYMENT_TARGET = 10.13;
325
- MARKETING_VERSION = 2.1.1 ;
325
+ MARKETING_VERSION = 2.1.2 ;
326
326
OTHER_CFLAGS = "$(inherited)";
327
327
OTHER_LDFLAGS = "$(inherited)";
328
328
OTHER_SWIFT_FLAGS = "$(inherited)";
352
352
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
353
353
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
354
354
MACOSX_DEPLOYMENT_TARGET = 10.13;
355
- MARKETING_VERSION = 2.1.1 ;
355
+ MARKETING_VERSION = 2.1.2 ;
356
356
OTHER_CFLAGS = "$(inherited)";
357
357
OTHER_LDFLAGS = "$(inherited)";
358
358
OTHER_SWIFT_FLAGS = "$(inherited)";
You can’t perform that action at this time.
0 commit comments