-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (49 loc) · 1.43 KB
/
expo-eas-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: expo-eas-build
on:
workflow_call:
secrets:
expo-token:
description: "expo token"
required: true
inputs:
platform:
type: string
default: all
profile:
type: string
default: preview
submit:
type: boolean
default: false
runs-on:
type: string
default: self-hosted
jobs:
eas-build:
runs-on: ${{ inputs.runs-on }}
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v4
- name: ⚙️ Setup NodeJS
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: ⚙️ Setup Expo
uses: expo/expo-github-action@v8
with:
expo-cache: true
expo-version: latest
eas-version: latest
packager: npm
token: ${{ secrets.expo-token }}
- name: 🏦 Cache dependencies
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
- name: 📦 Install dependencies
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm ci --ignore scripts
- name: 🚀 EAS Build
run: eas build --platform ${{ inputs.platform }} --non-interactive --profile=${{ inputs.profile }} ${{ inputs.submit && '--auto-submit' || ''}}