Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/src/content/docs/ci-cd/app-releasing-process.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ The starter comes with a set of GitHub workflows that use EXPO EAS to build and

- `new-app-version.yml` : A workflow that run `app-release` script in order to update the app version and push a new tag to GitHub.

- `new-github-release.yml` : A workflow that is triggered whenever a new tag is pushed to GitHub. It will create a new GitHub release based on the tag name with the correct changelog.

- `eas-build-qa.yml` : A workflow that is triggered whenever a new release is created on GitHub. It will build the app using EXPO EAS and based on the config it will distribute.

- `eas-build-prod.yml` : A workflow that is triggered manually whenever we want to push a new release to the App Store and Google Play. It will build the app using EXPO EAS and based on the config it will distribute.
Expand Down
16 changes: 2 additions & 14 deletions docs/src/content/docs/ci-cd/workflows-references.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ All actions are located in the `.github/actions` folder, and here is the complet

### ⚙️ EAS Build

<CodeBlock file=".github/actions/eas-build/action.yml" />
<CodeBlock file=".github/workflows/eas-build.yml" />

## Workflows

Expand All @@ -58,19 +58,7 @@ All actions are located in the `.github/actions` folder, and here is the complet

### ⚙️ New App Version

<CodeBlock file=".github/workflows/new-app-version.yml" />

### ⚙️ New Github Release

<CodeBlock file=".github/workflows/new-github-release.yml" />

### ⚙️ EAS Build QA

<CodeBlock file=".github/workflows/eas-build-qa.yml" />

### ⚙️ EAS Build Prod

<CodeBlock file=".github/workflows/eas-build-prod.yml" />
<CodeBlock file=".github/workflows/new-template-version.yml" />

### ⚙️ E2E Test for Android

Expand Down