-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
34 lines (31 loc) · 999 Bytes
/
expo-dev-build.yml
File metadata and controls
34 lines (31 loc) · 999 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
##############################################################################################
#
# Expo Dev Build — replaces the Bitrise expo_dev_pipeline.
#
# Triggered on every push to main. Builds the main-dev configuration (Debug, simulator)
# for both iOS and Android using the reusable build.yml workflow.
#
# No version bump or TestFlight upload — this is a dev/simulator build only.
# Artifacts (iOS .app zip + Android APK) are uploaded as GitHub Actions artifacts.
#
# [skip ci] commits (e.g. version bumps) are automatically skipped by GitHub Actions.
#
##############################################################################################
name: Expo Dev Build
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
id-token: write
jobs:
build-dev:
name: Expo dev build (main-dev)
uses: ./.github/workflows/build.yml
with:
build_name: main-dev
platform: both
skip_version_bump: true
secrets: inherit