Skip to content

Commit

Permalink
Update Fastfile - first pass
Browse files Browse the repository at this point in the history
  • Loading branch information
billybooth authored Feb 13, 2024
1 parent cecb97a commit 518d88a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,17 @@ platform :ios do
app_identifier: [],
)

UI.success "decrypting repo!"
storage = Match::Storage.for_mode("git", { git_url: git_url, shallow_clone: shallow_clone, git_branch: branch, clone_branch_directly: true})
storage.download
encryption = Match::Encryption.for_storage_mode("git", { git_url: git_url, working_directory: storage.working_directory})
encryption.decrypt_files

files = []
iterate(storage.working_directory) do |current|
files << current
UI.success("found '#{File.basename(current)}'")
end
end

desc "Nuke Certs"
Expand Down

0 comments on commit 518d88a

Please sign in to comment.