Skip to content

Commit

Permalink
chore: Update fastlane script (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjankowski authored Aug 8, 2023
1 parent 1ce7554 commit 4c3cc57
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 0 additions & 4 deletions Sources/TokenStore/KeychainRelated/KeychainService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import Security
struct KeychainService {
let secureStoreQueryable: KeychainStoreQueryable

init(secureStoreQueryable: KeychainStoreQueryable) {
self.secureStoreQueryable = secureStoreQueryable
}

func set<T: Encodable>(_ value: T?, key: String) throws {
guard let json = value?.dictionary,
let data = try? JSONSerialization.data(withJSONObject: json, options: JSONSerialization.WritingOptions())
Expand Down
1 change: 1 addition & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ private_lane :create_github_pull_request do |options|
sh("git checkout -b #{commit_version_tag}")
sh("git add .")
sh("git commit -am \"#{commit_title}\"")
sh("git config --global http.postBuffer 500M")
sh("git push origin -u #{commit_version_tag}")

if dry_run == true
Expand Down

0 comments on commit 4c3cc57

Please sign in to comment.