generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
42 lines (42 loc) · 1.41 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
name: 'Upload Diawi'
description: 'Upload APK to Diawi'
author: 'rnkdsh'
inputs:
token:
description: 'Diawi API access token'
required: true
file:
description: 'APK file to upload on Diawi'
required: true
password:
description: 'Protect your app with a password. It will be required to access the installation page'
required: false
recipients:
description: 'Email addresses Diawi will send the result to (up to 5 separated by commas for starter/premium/enterprise accounts, 1 for free accounts)'
required: false
wall_of_apps:
description: 'Allow Diawi to display the app''s icon on the wall of apps'
required: false
find_by_udid:
description: 'Allow your testers to find the app on Diawi''s mobile web app using their UDID (iOS only)'
required: false
installation_notifications:
description: 'Receive notifications each time someone installs the app (only starter/premium/enterprise accounts)'
required: false
dry-run:
description: 'Only parse the arguments without executing the upload'
required: false
comment:
description: 'Additional information to your users on this build: the comment will be displayed on the installation page'
required: false
outputs:
url:
description: 'URL generated by Diawi'
qrcode:
description: 'QRCode generated by Diawi'
runs:
using: 'node16'
main: 'index.js'
branding:
color: 'blue'
icon: 'package'