forked from expo/expo-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
42 lines (42 loc) · 1.5 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: Expo GitHub Action
author: Expo
description: Publish, build or manage your Expo app with GitHub Actions
branding:
icon: terminal
color: gray-dark
runs:
using: node20
main: build/setup/index.js
inputs:
expo-version:
description: Expo CLI version to install
expo-cache:
description: If Expo CLI should be cached to speed up installation
default: true
eas-version:
description: EAS CLI version to install
eas-cache:
description: If EAS CLI should be cached to speed up installation
default: true
packager:
description: The package manager used to install the CLIs
default: yarn
patch-watchers:
description: If the action should patch the ENOSPC errors
default: true
token:
description: Your Expo token, for authentication. (use with secrets)
# Below are deprecated and won't be supported anymore
eas-cache-key:
description: A custom remote cache key to use for EAS CLI.
deprecationMessage: Custom cache keys are deprecated and not used anymore.
expo-cache-key:
description: A custom remote cache key to use for Expo CLI.
deprecationMessage: Custom cache keys are deprecated and not used anymore.
username:
description: Your Expo username, for authentication.
deprecationMessage: Username/password authentication is deprecated, use a token instead.
password:
description: Your Expo password, for authentication. (use with secrets)
deprecationMessage: Username/password authentication is deprecated, use a token instead.