Skip to content

Commit 140d4a3

Browse files
authored
Add build options for Android, iOS, and macOS
Added workflow_dispatch inputs for Android, iOS, and macOS builds.
1 parent 239a8a7 commit 140d4a3

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ on:
99
merge_group:
1010
types:
1111
- checks_requested
12+
workflow_dispatch:
13+
inputs:
14+
build_android:
15+
description: 'Build for Android'
16+
type: boolean
17+
default: false
18+
build_ios:
19+
description: 'Build for iOS'
20+
type: boolean
21+
default: false
22+
build_macos:
23+
description: 'Build for macOS'
24+
type: boolean
25+
default: false
1226

1327
concurrency:
1428
group: ${{ github.ref }}

0 commit comments

Comments
 (0)