forked from Apple-Actions/upload-testflight-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 790 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: 'Upload app to TestFlight'
description: 'Uploads an app to Apple TestFlight'
author: 'Itty Bitty Apps Pty Ltd'
inputs:
app-path:
description: 'The path to the app (ipa etc)'
required: true
app-type:
description: 'The type of app to upload (osx | ios | appletvos)'
required: true
default: 'ios'
issuer-id:
description: 'The AppStoreConnect API Key Issuer Identifier'
required: true
api-key-id:
description: 'The Key ID for AppStore Connect API'
required: true
api-private-key:
description: 'The PKCS8 format Private Key for AppStore Connect API'
required: true
outputs:
altool-response:
description: 'XML output from altool'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'arrow-up-circle'
color: 'blue'