Lines Matching refs:variables
2 title: Environment variables and secrets in EAS Build
3 sidebar_title: Environment variables and secrets
4 description: Learn how to use environment variables and secrets in an EAS Build.
11 …variables in Expo guide](/guides/environment-variables) describes how to use **.env** files to set…
13 …variables outside of your JavaScript code to customize your app binary at build time, such as sett…
15 ## Setting plaintext environment variables in eas.json
19 …variables in a **.env** file for local development as described in the [environment variables guid…
55 …higher. See notes for [SDK 48 and lower](/guides/environment-variables#environment-variables-in-sd…
59 You can use environment variables in a [dynamic config](/workflow/configuration/#dynamic-configurat…
86 …variables in your **eas.json** build profile are available when evaluating **app.config.js**. It's…
90 Any environment variables set in your **eas.json** build profile are also available to other build …
92 …variables dynamically during the build process. The `set-env` executable is available in the `PATH…
98 ## Built-in environment variables
100 The following environment variables are exposed to each build job and can be used within any build …
115 ## Using secrets in environment variables
206 …variables defined in a **.env** file are only considered by the Expo CLI. Therefore, if you upload…
208 …ocal environment, while defining environment variables for EAS Build in **eas.json**. Environment …
210 …in some duplication of variables between **.env** files and **eas.json** build profiles, but makes…
212 ### How do I share environment variables between my local development environment, EAS Update, and …
214 Environment variables defined in **eas.json** are only available when running an EAS Build job. How…
216 …variables in EAS Update guide](/eas-update/environment-variables/#sharing-environment-variables-be…
220 Environment variables are applied in the following order:
223 2. Environment variables defined in EAS Secrets
226 Variable sources applied last will overwrite the previously loaded source for variables with the sa…
230 ### How do environment variables work for my Expo Development Client builds?
232 …variables set in your build profile that impact **app.config.js** will be used for configuring the…
234 ### Can I just set my environment variables on a CI provider?
236 …variables must be defined in **eas.json** to be made available to EAS Build builders. If you are […