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
12 changes: 6 additions & 6 deletions .eas/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches: ["develop"]

jobs:
android_development_build:
name: Build Android (development)
type: build
params:
platform: android
profile: development
# android_development_build:
# name: Build Android (development)
# type: build
# params:
# platform: android
# profile: development

ios_device_development_build:
name: Build iOS device (development)
Expand Down
33 changes: 17 additions & 16 deletions .eas/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,32 @@ on:
branches: ["preview"]

jobs:
build_ios_preview:
name: Build iOS (preview - TestFlight)
type: build
params:
platform: ios
profile: preview

submit_ios_preview:
name: Submit iOS (TestFlight)
type: submit
needs: [build_ios_preview]
params:
platform: ios
profile: preview

# build_android_preview:
# name: Build Android (preview - store)
# name: Build Android (preview - Internal)
# type: build
# params:
# platform: android
# profile: preview

# submit_android_preview:
# name: Submit Android (internal track)
# name: Submit Android (Play Internal)
# type: submit
# needs: [build_android_preview]
# params:
# platform: android
# profile: preview

build_ios_preview:
name: Build iOS (preview - TestFlight)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

submit_ios_preview:
name: Submit iOS (TestFlight)
type: submit
needs: [build_ios_preview]
params:
platform: ios
profile: preview
24 changes: 24 additions & 0 deletions .eas/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ on:
branches: ["master"]

jobs:
# -----------------------
# iOS (App Store Connect)
# -----------------------
build_ios_production:
name: Build iOS (production)
type: build
params:
platform: ios
profile: production

submit_ios_production:
name: Submit iOS (App Store Connect)
type: submit
needs: [build_ios_production]
params:
platform: ios
profile: production

# -----------------------
# Android (Google Play)
# -----------------------
build_android_production:
name: Build Android (production)
type: build
Expand All @@ -16,3 +37,6 @@ jobs:
name: Submit Android (production track)
type: submit
needs: [build_android_production]
params:
platform: android
profile: production