Skip to content

Commit

Permalink
Deploy 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amichnia committed Dec 19, 2019
1 parent c575c5f commit 6909197
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ task :deploy do
version = ARGV[1].to_s
if version
sh("sed 's|{{VERSION_NUMBER}}|#{version}|g' ./Podspec.template > ./SwiftyMocky.podspec")
sh("git add *")
sh("git commit -m \"Deploy #{version}\"")
sh("git push")
sh("git tag #{version} && git push --tags")
sh("pod trunk push")
sh("git add ./SwiftyMocky.podspec")
# sh("git commit -m \"Deploy #{version}\"")
# sh("git push")
# sh("git tag #{version} && git push --tags")
# sh("pod trunk push")
end
end

Expand Down
2 changes: 1 addition & 1 deletion SwiftyMocky.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Library that uses metaprogramming technique to generate mocks based on sources,
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Przemysław Wośko' => 'przemyslaw.wosko@intive.com', 'Andrzej Michnia' => 'amichnia@gmail.com' }
s.source = { :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => s.version.to_s }

s.swift_versions = ['4.1', '4.2', '5.0', '5.1.2']

s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
Expand Down

0 comments on commit 6909197

Please sign in to comment.