Skip to content

Commit a37cfc0

Browse files
committed
Merge branch 'release/1.3.7'
2 parents 659ed87 + b281d03 commit a37cfc0

File tree

5 files changed

+69
-38
lines changed

5 files changed

+69
-38
lines changed
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: deploy_to_cocoapods
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
build:
10+
11+
runs-on: macOS-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
16+
- name: Install Cocoapods
17+
run: gem install cocoapods
18+
19+
- name: Deploy to Cocoapods
20+
run: |
21+
set -eo pipefail
22+
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
23+
pod lib lint --allow-warnings
24+
pod trunk push --allow-warnings
25+
env:
26+
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

EPLogger.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'EPLogger'
11-
s.version = '1.3.6'
11+
s.version = ENV['LIB_VERSION'] || '1.0.0'
1212
s.summary = 'Just simple Logger'
1313

1414
# This description is used to generate tags and improve search results.
@@ -39,8 +39,8 @@ Just simple Logger
3939
s.author = { 'Elon Park' => '[email protected]' }
4040
s.source = { :git => 'https://github.com/ElonPark/EPLogger.git', :tag => s.version.to_s }
4141

42-
s.ios.deployment_target = '8.0'
43-
s.swift_versions = '5.0'
42+
s.ios.deployment_target = '9.3'
43+
s.swift_versions = '5.5'
4444
s.source_files = 'EPLogger/Classes/*'
4545

4646
end

EPLogger.xcodeproj/project.pbxproj

+10-6
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,9 @@
276276
DB301BD82440748B00055C77 /* Debug */ = {
277277
isa = XCBuildConfiguration;
278278
buildSettings = {
279-
CODE_SIGN_STYLE = Automatic;
279+
CODE_SIGN_STYLE = Manual;
280280
DEFINES_MODULE = YES;
281-
DEVELOPMENT_TEAM = M77W68G9P5;
281+
DEVELOPMENT_TEAM = "";
282282
DYLIB_COMPATIBILITY_VERSION = 1;
283283
DYLIB_CURRENT_VERSION = 1;
284284
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -289,9 +289,11 @@
289289
"@executable_path/Frameworks",
290290
"@loader_path/Frameworks",
291291
);
292-
MARKETING_VERSION = 1.3.6;
292+
MARKETING_VERSION = 1.3.7;
293293
PRODUCT_BUNDLE_IDENTIFIER = com.elonparks.EPLogger;
294294
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
295+
PROVISIONING_PROFILE_SPECIFIER = "";
296+
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "";
295297
SKIP_INSTALL = YES;
296298
SWIFT_VERSION = 5.0;
297299
TARGETED_DEVICE_FAMILY = "1,2";
@@ -301,9 +303,9 @@
301303
DB301BD92440748B00055C77 /* Release */ = {
302304
isa = XCBuildConfiguration;
303305
buildSettings = {
304-
CODE_SIGN_STYLE = Automatic;
306+
CODE_SIGN_STYLE = Manual;
305307
DEFINES_MODULE = YES;
306-
DEVELOPMENT_TEAM = M77W68G9P5;
308+
DEVELOPMENT_TEAM = "";
307309
DYLIB_COMPATIBILITY_VERSION = 1;
308310
DYLIB_CURRENT_VERSION = 1;
309311
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -314,9 +316,11 @@
314316
"@executable_path/Frameworks",
315317
"@loader_path/Frameworks",
316318
);
317-
MARKETING_VERSION = 1.3.6;
319+
MARKETING_VERSION = 1.3.7;
318320
PRODUCT_BUNDLE_IDENTIFIER = com.elonparks.EPLogger;
319321
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
322+
PROVISIONING_PROFILE_SPECIFIER = "";
323+
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "";
320324
SKIP_INSTALL = YES;
321325
SWIFT_VERSION = 5.0;
322326
TARGETED_DEVICE_FAMILY = "1,2";

Example/Pods/Pods.xcodeproj/project.pbxproj

+10-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EPLogger/EPLogger-Info.plist

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)