diff --git a/.github/deploy b/.github/deploy index 07c998f..bcc52f3 100755 --- a/.github/deploy +++ b/.github/deploy @@ -115,12 +115,12 @@ func podspec(repo: Repo, user: User, pkg: Package) -> (Substring, String) { return (name, """ Pod::Spec.new do |s| s.name = '\(name)' - s.version = '\(tag)' - s.summary = '\(repo.description)' - s.homepage = "https://github.com/\(slug)" - s.license = '\(repo.license.spdx_id)' s.author = { '\(user.name)': '\(user.email)' } s.source = { git: "https://github.com/\(slug).git", tag: '\(tag)' } + s.version = '\(tag)' + s.summary = '\(repo.description)' + s.license = '\(repo.license.spdx_id)' + s.homepage = "https://github.com/\(slug)" s.social_media_url = 'https://twitter.com/\(owner)' s.osx.deployment_target = '10.10' s.ios.deployment_target = '8.0' diff --git a/.travis.yml b/.travis.yml index af66c76..bf8522b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,6 +64,7 @@ jobs: name: Check Linux tests are sync’d install: swift test --generate-linuxmain script: git diff --exit-code + osx_image: xcode10.2 - stage: deploy name: Jazzy