| /expo/tools/src/commands/ |
| H A D | WorkflowDispatch.ts | 74 if (!workflow) { 79 if (!process.env.CI && workflow.inputs && !(await confirmTriggeringWorkflowAsync(workflow))) { 90 await dispatchWorkflowEventAsync(workflow.id, ref, workflow.inputs); 135 (workflow) => workflow.slug === workflowConfig.baseWorkflowSlug 167 return workflows.find((workflow) => workflow.slug === workflowSlug) ?? null; 174 const { workflow } = await inquirer.prompt([ constant 179 choices: workflows.map((workflow) => { 181 name: `${chalk.yellow(workflow.name)} (${chalk.green.italic(workflow.slug)})`, 182 value: workflow, 188 return workflow; [all …]
|
| /expo/tools/src/ |
| H A D | GitHubActions.ts | 39 const workflows = await filterAsync(response.data.workflows, async (workflow) => 41 workflow.name && 42 workflow.path && 43 workflow.state === 'active' && 44 (await fs.pathExists(path.join(EXPO_DIR, workflow.path))) 49 .map((workflow) => { 50 const slug = path.basename(workflow.path, path.extname(workflow.path)); 52 ...workflow,
|
| /expo/.github/workflows/ |
| H A D | shell-app-android.yml | 3 # The actual workflow is loaded from the target branch 4 # (the one we dispatch the workflow to run on) 6 # to trigger the workflow on other (usually sdk-xx) branches 13 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} 20 - name: Fail workflow 23 "Did you forget to select the SDK release branch when dispatching workflow?"
|
| H A D | shell-app-ios.yml | 3 # The actual workflow is loaded from the target branch 4 # (the one we dispatch the workflow to run on) 6 # to trigger the workflow on other (usually sdk-xx) branches 17 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} 24 - name: Fail workflow 27 "Did you forget to select the SDK release branch when dispatching workflow?"
|
| H A D | docs-pr-destroy.yml | 13 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
|
| H A D | test-suite-lint.yml | 14 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
|
| /expo/docs/pages/archive/ |
| H A D | managed-vs-bare.mdx | 16 ## Managed workflow 18 The managed workflow is kind of like [Rails](https://rubyonrails.org) and [Create React App](https:… 22 …workflow**. A developer using the managed workflow doesn't use Android Studio or Xcode often (alth… 24 While you can do a lot with the managed workflow, you can't do _everything_ with it, so what are yo… 30 ## Bare workflow 36 | Feature | Managed workflow | Bare workflow … 47 ## Which workflow is right for me? 50 … the managed workflow. There is a huge amount of complexity that comes along with the native devel… 51 …nced** it also doesn't hurt to start every new project with the managed workflow and only generate… 53 … bare workflow when you need it due to limitations, otherwise use the managed workflow, and you mo… [all …]
|
| /expo/docs/pages/guides/ |
| H A D | overview.mdx | 8 …workflow/configuration/), [permissions](/guides/permissions/), [universal links](/guides/deep-link…
|
| H A D | configuring-js-engines.mdx | 13 …ine`](/versions/latest/config/app/#jsengine) field inside [app config](/workflow/configuration/) a… 25 <Collapsible summary="Are you using the bare workflow?"> 41 <Collapsible summary="Are you using the bare workflow?">
|
| H A D | local-app-development.mdx | 14 …oduction to both methods and references to other guides that are necessary to create this workflow. 69 … environment. Follow the [instructions on the Android Studio Emulator](/workflow/android-studio-em… 105 … environment. Follow the [instructions on the Android Studio Emulator](/workflow/android-studio-em… 139 … environment. Follow the [instructions on the Android Studio Emulator](/workflow/android-studio-em… 175 … the iOS Simulator. You will also need to [install Command Line Tools](/workflow/ios-simulator/#in… 204 …`--clean` flag](/workflow/prebuild/#clean) will delete existing directories before regenerating th… 223 href="/workflow/prebuild"
|
| /expo/packages/@expo/config/src/paths/ |
| H A D | extensions.ts | 21 for (const workflow of [...workflows, '']) { constant 26 fileExtensions.push([platform, workflow, extension].filter(Boolean).join('.'));
|
| /expo/packages/@expo/config/build/paths/ |
| H A D | extensions.js | 24 for (const workflow of [...workflows, '']) { 29 fileExtensions.push([platform, workflow, extension].filter(Boolean).join('.'));
|
| /expo/docs/pages/distribution/ |
| H A D | runtime-versions.mdx | 28 ### Configuration for the managed workflow 30 If you are using the [managed workflow](/archive/managed-vs-bare/#managed-workflow), `runtimeVersio… 40 ### Configuration for the bare workflow 42 If you are using the [bare workflow](/archive/managed-vs-bare/#bare-workflow), set the runtime vers…
|
| /expo/docs/pages/troubleshooting/ |
| H A D | react-native-version-mismatch.mdx | 24 - If this is a managed workflow project, either remove the `sdkVersion` field from your **app.json*… 26 - If this is a managed workflow project, you should make sure your `react-native` version is correc… 28 - If this is a bare workflow project, and this error is occurring right after upgrading your React … 34 …- If this is a bare workflow project, run `npx pod-install`, then rebuild your native projects (ru…
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | build-properties.mdx | 13 … directories during [Expo Prebuild](/workflow/prebuild). This config plugin configures how [Expo P…
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | build-properties.mdx | 14 …properties** and **ios/Podfile.properties.json** directories during [Prebuild](/workflow/prebuild). 16 > **info** This config plugin configures how [Prebuild command](/workflow/prebuild) generates the n…
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | build-properties.mdx | 14 …properties** and **ios/Podfile.properties.json** directories during [Prebuild](/workflow/prebuild). 16 > **info** This config plugin configures how [Prebuild command](/workflow/prebuild) generates the n…
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | build-properties.mdx | 14 …properties** and **ios/Podfile.properties.json** directories during [Prebuild](/workflow/prebuild). 16 > **info** This config plugin configures how [Prebuild command](/workflow/prebuild) generates the n…
|
| /expo/docs/pages/bare/ |
| H A D | overview.mdx | 11 …ously generating them on demand using [app config](/workflow/configuration/) and [prebuild](/workf… 58 href="/workflow/using-libraries#installing-a-third-party-library"
|
| /expo/docs/pages/custom-builds/ |
| H A D | get-started.mdx | 21 … build config with EAS. It follows a scenario where you create a custom workflow to run tests on E… 70 ## Create a workflow 72 You must add a build config file in your project to create a workflow. Create a directory path **.e… 74 Inside it, you can create a new file called **test.yml**. This file contains the workflow config th… 78 Add the following workflow steps in the file: 140 ## Run build to test the workflow 142 To test the workflow, run the following command:
|
| H A D | schema.mdx | 21 Defined to describe a custom workflow. All config options to create a workflow are specified under … 25 …me of your workflow that is used to identify the workflow in the build logs. EAS Build uses this p… 27 For example, the workflow's name is `Run tests`: 43 … workflow runs on EAS Build. You can define single or multiple steps in a workflow. However, it is… 79 For example, a workflow with the following `steps` will print "Hello world": 245 In a workflow, let's use the `random` function to generate two random numbers and print them: 267 For example, the following workflow demonstrates how to use output from one step to another: 540 ```yaml workflow.yml 1203 > **Warning** You can currently upload each artifact type only once per workflow. 1269 > **Warning** You can currently upload each artifact type only once per workflow. [all …]
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | in-app-purchases.mdx | 12 …s` from RevenueCat](https://www.revenuecat.com/blog/using-revenuecat-with-expos-managed-workflow/). 22 …module is currently only available in the [bare](/archive/managed-vs-bare/#bare-workflow) workflow. 44 For more information, see Apple's workflow for configuring In-App Purchases [here](https://help.app…
|
| H A D | updates.mdx | 26 **To test manual updates with managed workflow standalone apps**, you can create a [**.apk**](/buil… 28 **To test manual updates in bare workflow apps**, make a release build with `expo run:android --var… 74 …trying to reload the application and it could not be reloaded. For bare workflow apps, double chec…
|
| H A D | sharing.mdx | 27 …f you are using the bare workflow you can build this functionality on your own, but it is not avai…
|
| /expo/home/screens/ProjectScreen/ |
| H A D | EmptySection.tsx | 21 WebBrowser.openBrowserAsync('https://docs.expo.dev/workflow/publishing/');
|