Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 508 Bytes

DownloadMetadata.md

File metadata and controls

17 lines (14 loc) · 508 Bytes

Download metadata for an app from AppStore Connect

This task use a script from Transporter, you should download it from AppStore first.

DownloadMetadata {
    $0.authenticate(
        username: ProcessInfo().environment["username"]!,
        appSpecificPassword: ProcessInfo().environment["password"]!
    )

    $0.download(
        appSKU: "com.onmyway133.KeyFighter",
        saveDirectory: Directory.downloads.path
    )
}