-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 981 Bytes
/
Copy pathrelease-dev.yaml
File metadata and controls
40 lines (33 loc) · 981 Bytes
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
name: Release DEV
on:
workflow_dispatch:
inputs:
platform:
description: Platform to build
required: true
default: android
type: choice
options:
- android
- ios
jobs:
build-development:
runs-on: ubuntu-latest
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node-environment
with:
node-version: '20'
cache-path: 'node_modules'
cache-key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
- uses: ./.github/actions/setup-expo
with:
expo-token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Verify source
run: bun run verify
- name: Build development client
run: eas build --platform "${{ inputs.platform }}" --profile development --non-interactive --wait