Create Expo previews with EAS Update
Usage — Outputs — Examples — Caveats — Changelog
This (sub)action creates new EAS Updates and creates comments containing Expo QR codes and useful links. It can help speed up the review process by letting the reviewer load the app directly on their phone.
This action is customizable through variables defined in the action.yml
.
Here is a summary of all the input options you can use.
variable | default | description |
---|---|---|
command | - | EAS CLI command to run when creating updates |
working-directory | - | The relative directory of your Expo app |
comment | true |
If the action should summarize the EAS Update information as comment on a pull request |
comment-id | see code | Unique id template to prevent duplicate comments (read more) |
qr-target | inferred from project | Either dev-build or expo-go , affects how the EAS Update is opened through the QR code. Defaults to dev-build when expo-dev-client is detected within the project. |
github-token | github.token |
GitHub token to use when commenting on PR (read more) |
There are a few variables available that you can use to set up your own notifications. These variables are strings; some may be empty because of your project configuration.
output name | description |
---|---|
projectId | The resolved EAS project ID |
projectName | The name of your project (read more) |
projectSlug | The slug of your project (read more) |
projectScheme | The longest (custom) app scheme (read more) |
projectSchemes | All (custom) app schemes in order of longest to shortest, as JSON string (read more) |
commentId | The unique comment ID to prevent duplicate comments (read more) |
comment | The comment with information about the updates |
Some of the EAS Update variables can be shared for all platforms if the runtime version of all platforms is identical.
output name | description |
---|---|
groupId | Update group ID that contains one or more platform-specific updates |
runtimeVersion | Runtime version used for one or more platform-specific updates (read more) |
qr | Absolute URL to the QR code to load this update |
link | Absolute URL to platform-independent update on expo.dev |
branchName | Branch name that was used when creating this update (read more) |
message | Custom message to describe the update |
createdAt | When the update was created |
gitCommitHash | Git commit hash that was found when creating this update |
These variables contain Android-specific update information. When skipping the Android update, these variables are empty strings.
output name | description |
---|---|
androidId | Android-specific update id |
androidGroupId | Update group ID that contains one or more platform-specific updates |
androidBranchName | Branch name that was used when creating this update (read more) |
andriodManifestPermalink | Absolute URL to the Android-specific update manifest |
androidMessage | Custom message to describe the Android-specific update |
androidRuntimeVersion | Runtime version used for the Android-specific update (read more) |
androidQR | Absolute URL to the QR code to load this Android-specific update |
androidLink | Absolute URL to the Android-specific update on expo.dev |
These variables contain iOS-specific update information. When skipping the iOS update, these variables are empty strings.
output name | description |
---|---|
iosId | iOS-specific update id |
iosGroupId | Update group ID that contains one or more platform-specific updates |
iosBranchName | Branch name that was used when creating this update (read more) |
iosManifestPermalink | Absolute URL to the ios-specific update manifest |
iosMessage | Custom message to describe the iOS-specific update |
iosRuntimeVersion | Runtime version used for the iOS-specific update (read more) |
iosQR | Absolute URL to the QR code to load this iOS-specific update |
iosLink | Absolute URL to the iOS-specific update on expo.dev |
Before diving into the workflow examples, you should know the basics of GitHub Actions. You can read more about this in the GitHub Actions documentation.
This workflow creates a new EAS Update every time a pull request is created or updated.
We are using the --auto
, together with the --branch
, flag in this example.
--auto
will automatically create an update using the current git commit message and git branch.--branch
will overwrite this value inferred from git with our own value.
Warning GitHub Actions might use a temporary merge branch for PRs. To avoid using this merge branch for our update, we overwrite the branch name from
--auto
with our own--branch
value.
on:
pull_request:
types: [opened, synchronize]
jobs:
preview:
runs-on: ubuntu-latest
permissions:
pull-requests: write # Allow comments on PRs
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: 📦 Install dependencies
run: yarn install
- name: 🚀 Create preview
uses: expo/expo-github-action/preview@v8
with:
# `github.event.pull_request.head.ref` is only available on `pull_request` triggers.
# Use your own, or keep the automatically infered branch name from `--auto`, when using different triggers.
command: eas update --auto --branch ${{ github.event.pull_request.head.ref }}
You can also use this action to create the EAS Update and use the information to create a Slack message instead of a pull request comment.
By disabling commenting with comment set to false
, you can reuse this action with any workflow trigger and send it to any service accessible in GitHub Actions.
See Available variables for a list of all outputs.
on:
push:
branches:
- main
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: 📦 Install dependencies
run: yarn install
- name: 🚀 Create preview
uses: expo/expo-github-action/preview@v8
id: preview
with:
# In this example, we use the `push` trigger which will always use the branch name that was pushed to.
# By using `--auto` we both use the git commit message and branch name for the update.
command: eas update --auto
comment: false
- name: 💬 Comment in Slack
uses: slackapi/slack-github-action@v1.17.0
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_TOKEN }}
with:
channel-id: deployments
slack-message: 'New deployment is ready!\n- Preview: ${{ steps.preview.outputs.qr }}'
When automating these preview comments, you have to be careful not to spam a pull request on every successful run. Every comment contains a generated message-id to identify previously made comments and update them instead of creating a new comment.
GitHub Actions uses slightly different checkout logic for different workflow triggers.
When using the push
trigger, GitHub Actions checks out the branch that was pushed to.
But for pull_request
triggers, GitHub Actions might use a temporary branch name.
This affects in what "branch" your EAS Update is created when using the --auto
flag.
When using the GitHub API, you always need to be authenticated.
This action tries to auto-authenticate using the Automatic token authentication from GitHub.
You can overwrite the token by adding the GITHUB_TOKEN
environment variable or add the github-token input.
with ❤️ byCedric