Skip to content

Commit

Permalink
Merge branch 'release/1.3.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonPark committed Mar 12, 2022
2 parents 659ed87 + b281d03 commit a37cfc0
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 38 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deploy_to_cocoapods.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: deploy_to_cocoapods

on:
push:
tags:
- '*'

jobs:
build:

runs-on: macOS-latest

steps:
- uses: actions/checkout@v1

- name: Install Cocoapods
run: gem install cocoapods

- name: Deploy to Cocoapods
run: |
set -eo pipefail
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
6 changes: 3 additions & 3 deletions EPLogger.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'EPLogger'
s.version = '1.3.6'
s.version = ENV['LIB_VERSION'] || '1.0.0'
s.summary = 'Just simple Logger'

# This description is used to generate tags and improve search results.
Expand Down Expand Up @@ -39,8 +39,8 @@ Just simple Logger
s.author = { 'Elon Park' => 'sungwoon.park92@gmail.com' }
s.source = { :git => 'https://github.com/ElonPark/EPLogger.git', :tag => s.version.to_s }

s.ios.deployment_target = '8.0'
s.swift_versions = '5.0'
s.ios.deployment_target = '9.3'
s.swift_versions = '5.5'
s.source_files = 'EPLogger/Classes/*'

end
16 changes: 10 additions & 6 deletions EPLogger.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@
DB301BD82440748B00055C77 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
CODE_SIGN_STYLE = Manual;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = M77W68G9P5;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand All @@ -289,9 +289,11 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.3.6;
MARKETING_VERSION = 1.3.7;
PRODUCT_BUNDLE_IDENTIFIER = com.elonparks.EPLogger;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "";
SKIP_INSTALL = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
Expand All @@ -301,9 +303,9 @@
DB301BD92440748B00055C77 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
CODE_SIGN_STYLE = Manual;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = M77W68G9P5;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand All @@ -314,9 +316,11 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.3.6;
MARKETING_VERSION = 1.3.7;
PRODUCT_BUNDLE_IDENTIFIER = com.elonparks.EPLogger;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "";
SKIP_INSTALL = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down
19 changes: 10 additions & 9 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Example/Pods/Target Support Files/EPLogger/EPLogger-Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a37cfc0

Please sign in to comment.