-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathrunway-android-production-workflow.yml
More file actions
41 lines (38 loc) · 1.35 KB
/
runway-android-production-workflow.yml
File metadata and controls
41 lines (38 loc) · 1.35 KB
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
##############################################################################################
#
# Runway Android Production Workflow
#
# Triggered from Runway to either:
# - Push an OTA update to the production channel (when OTA_VERSION is bumped), or
# - Build the production mobile app (when there is no OTA version bump).
#
# When triggering workflow_dispatch, select the correct branch (e.g. main or release).
# Version bump: skipped — run Runway iOS Production first on the same branch for the bump.
#
##############################################################################################
name: Runway Android Production
on:
workflow_dispatch:
inputs:
source_branch:
description: >-
Optional branch, tag, or SHA (Build workflow source_branch).
Empty uses the branch selected in the "Use workflow from" UI.
required: false
type: string
permissions:
contents: write # required by build.yml (update-build-version job)
pull-requests: read
actions: write
id-token: write # required by build.yml
jobs:
runway-production:
uses: ./.github/workflows/runway-ota-build-core.yml
with:
platform: android
source_branch: ${{ inputs.source_branch }}
ota_channel: production
build_name: main-prod
create_production_ota_tag: true
skip_version_bump: true
secrets: inherit