You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,8 @@ Some additional features are included to make the usage of this action as simple
31
31
32
32
## Configuration options
33
33
34
+
> Create your [`EXPO_TOKEN`][link-expo-token] GitHub secret.
35
+
34
36
This action is customizable through variables defined in the [`action.yml`](action.yml).
35
37
Here is a summary of all the input options you can use.
36
38
@@ -41,7 +43,7 @@ Here is a summary of all the input options you can use.
41
43
|**eas-version**| - | EAS CLI version to install _(skips when omitted)_|
42
44
|**eas-cache**|`true`| If it should use the GitHub actions cache ([read more](#using-the-built-in-cache)) |
43
45
|**packager**|`yarn`| Package manager to use _(e.g. `yarn` or `npm`)_|
44
-
|**token**| - | Token of your Expo account - [get your token](https://expo.dev/accounts/%5Baccount%5D/settings/access-tokens)_(use with [secrets][link-actions-secrets])_|
46
+
|**token**| - | Token of your Expo account - [get your token][link-expo-token]_(use with [secrets][link-actions-secrets])_|
45
47
|**patch-watchers**|`true`| If it should patch the `fs.inotify.*` limits on Ubuntu ([read more](#enospc-errors-on-linux)) |
46
48
47
49
## Example workflows
@@ -56,7 +58,7 @@ You can read more about this in the [GitHub Actions documentation][link-actions]
56
58
### Publish on any push to main
57
59
58
60
This workflow listens to the `push` event on the `main` branch.
59
-
It sets up all required components to publish the app, including authentication with a token.
61
+
It sets up all required components to publish the app, including authentication with a [token][link-expo-token].
60
62
61
63
> Always use [secrets][link-actions-secrets] when using tokens.
62
64
@@ -97,7 +99,7 @@ This action also allows you to install the EAS CLI.
97
99
To do this, add the **eas-version** property, and the action will install it.
98
100
We recommend using `latest` for the EAS CLI.
99
101
100
-
> The **token** is shared for both Expo and EAS CLI.
102
+
> The [**token**][link-expo-token] is shared for both Expo and EAS CLI.
101
103
102
104
```yml
103
105
on:
@@ -179,9 +181,9 @@ jobs:
179
181
### Automatic Expo login
180
182
181
183
Some Expo commands, like `expo publish` and `eas build`, require you to be authenticated.
182
-
This action exports the **token** to ensure you are authenticated in every workflow step.
184
+
This action exports the [**token**][link-expo-token] to ensure you are authenticated in every workflow step.
183
185
184
-
> Note, this action does not store the token anywhere. Each separate workflow job needs to set up the **token** individually.
186
+
> Note, this action does not store the [token][link-expo-token] anywhere. Each separate workflow job needs to set up the [**token**][link-expo-token] individually.
185
187
186
188
### Using the built-in cache
187
189
@@ -212,3 +214,4 @@ You can opt-out from patching the file system by setting **patch-watchers** to `
0 commit comments