Skip to content

Commit 2ecab4a

Browse files
Add dedicated workflow_dispatch wrapper for manual build
1 parent 2aafe9a commit 2ecab4a

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Android Build
33
on:
44
push:
55
branches: [ human-operator, main ]
6-
workflow_dispatch: # Ermöglicht manuelle Ausführung des Workflows
6+
workflow_call:
77

88
jobs:
99
detect-changes:
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Android Build (Manual Dispatch)
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
run-manual-workflow:
8+
uses: ./.github/workflows/manual.yml
9+
secrets: inherit

0 commit comments

Comments
 (0)