Skip to content

Commit

Permalink
Add prebuilt framework when releasing to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephDuffy committed May 25, 2019
1 parent 277bf95 commit f881231
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ DerivedData
# Carthage/Checkouts

Carthage/Build
Kingfisher.framework.zip

# OSX
.DS_Store
Expand Down
4 changes: 3 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ platform :ios do

tests
lint
carthage(command: "archive", frameworks: ["Kingfisher"])

sync_build_number_to_git
increment_version_number(version_number: target_version)
Expand All @@ -72,7 +73,8 @@ platform :ios do
api_token: ENV['GITHUB_TOKEN'],
name: release_log[:title],
tag_name: target_version,
description: release_log[:text]
description: release_log[:text],
upload_assets: ["Kingfisher.framework.zip"]
)

pod_push
Expand Down

0 comments on commit f881231

Please sign in to comment.