-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathaction.yml
More file actions
60 lines (60 loc) · 2.28 KB
/
Copy pathaction.yml
File metadata and controls
60 lines (60 loc) · 2.28 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: 'Appetize Github Action'
description: 'Github Action to facilitate interaction with the Appetize API'
author: 'Appetize'
branding:
icon: 'chevron-up'
color: 'gray-dark'
inputs:
apiHost:
description: 'Alternative Appetize API host'
required: false
default: 'https://api.appetize.io'
apiToken:
description: 'Appetize API token'
required: true
publicKey:
description: 'The publicKey of the app to be updated; If no value is provided a new app will be created'
required: false
platform:
description: 'The platform targeted by the build, either ios or android'
required: true
appFile:
description: 'The local path to the app file to upload; either this or appUrl must be provided'
required: false
appUrl:
description: 'The URL to the app file to upload; either this or appFile must be provided'
required: false
fileType:
description: 'The file type of the app file that will be uploaded; Must be zip, tar.gz or apk. Default is zip for iOS and apk for Android'
required: false
note:
description: 'A note for your own purposes that will appear on the management dashboard.'
required: false
timeout:
description: 'The number of seconds to wait until automatically ending the session due to user inactivity. Must be 30, 60, 120, 180, 300, 600, 1800, 3600, or 7200'
required: false
default: '120'
disabled:
description: 'Whether or not streaming is disabled for this app.'
required: false
disableHome:
description: 'Whether or not the home button is disabled for this app.'
required: false
useLastFrame:
description: 'Whether or not the last image on the screen is shown after the session for the app ends.'
required: false
buttonText:
description: 'Customize the message prompting the user to start the session, default is "Tap to play"'
required: false
postSessionButtonText:
description: 'Customize the message prompting the user to restart the session, default is "Tap to play"'
required: false
launchUrl:
description: 'Specify a deeplink to bring your users to a specific location when your app is launched.'
required: false
outputs:
publicKey:
description: 'The public key of the app that was created or updated'
runs:
using: 'node24'
main: 'dist/index.js'