Skip to content

Commit

Permalink
Merge pull request #29 from recurly/cocoa-registry-uploadfix
Browse files Browse the repository at this point in the history
Fixing cocoa regitry upload
  • Loading branch information
mroman-recurly authored Aug 12, 2022
2 parents 060874c + 64a9809 commit ecf2e1a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
- uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_13.2.app && /usr/bin/xcodebuild -version
- name: List Simulators
run: xcrun simctl list runtimes
- name: Test iOS app
run: exec ./.github/scripts/test_app.sh
- name: Test Swift package
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy_to_cocoapods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: deploy_to_cocoapods
on:
release:
types: [released]
workflow_dispatch:

jobs:
build:
Expand All @@ -11,7 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_13.2.app && /usr/bin/xcodebuild -version
- name: List Simulators
run: xcrun simctl list runtimes
- name: Install Cocoapods
run: gem install cocoapods

Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2022 Recurly, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
4 changes: 2 additions & 2 deletions RecurlySDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Pod::Spec.new do |s|
s.author = { "Recurly, Inc." => "[email protected]" }


s.platform = :ios, '15.6'
s.platform = :ios, '15.2'
s.source = { :git => "https://github.com/recurly/recurly-client-ios.git", :tag => "v#{s.version}" }
s.source_files = 'RecurlySDK/*.{h,m}'
s.source_files = 'RecurlySDK-iOS/*.{h,m}'

s.frameworks = 'UIKit', 'Foundation', 'Security', 'CoreGraphics', 'QuartzCore', 'PassKit', 'AddressBook', 'CoreTelephony'
s.requires_arc = true
Expand Down

0 comments on commit ecf2e1a

Please sign in to comment.