-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
40 lines (38 loc) · 1.17 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
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: Run Sherlo
description: This is an action that uploads provided iOS & Android builds to Sherlo and starts a test run.
author: Sherlo
branding:
icon: play
color: gray-dark
runs:
using: 'node12'
main: 'packages/action/release/index.js'
inputs:
command:
description: 'command to execute ("local-builds", "expo-update", "expo-cloud-builds")'
required: true
android:
description: 'Path to android build (.apk file)'
required: false
ios:
description: 'Path to ios build (.app or .tar.gz/.tar)'
required: false
config:
description: 'Path to the config file (default: "sherlo.config.json")'
required: false
projectRoot:
description: 'Root directory of the React Native project (default: ".")'
required: false
branch:
description: 'EAS Update branch name'
required: false
easBuildScriptName:
description: 'Package.json script name that triggers EAS build'
required: false
waitForEasBuild:
description: 'Wait for manually triggered EAS build'
required: false
outputs:
url:
description: 'URL to Sherlo test results'