We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb9f2f commit 61e27c9Copy full SHA for 61e27c9
.github/workflows/manual.yml
@@ -21,6 +21,15 @@ jobs:
21
- name: Detect changed files
22
id: changes
23
run: |
24
+ # Bei workflow_dispatch immer alles bauen
25
+ if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
26
+ echo "app=true" >> $GITHUB_OUTPUT
27
+ echo "humanoperator=true" >> $GITHUB_OUTPUT
28
+ echo "shared=true" >> $GITHUB_OUTPUT
29
+ echo "Manual dispatch - building all modules"
30
+ exit 0
31
+ fi
32
+
33
# Geänderte Dateien im letzten Commit ermitteln
34
CHANGED_FILES=$(git diff --name-only HEAD~1 HEAD 2>/dev/null || echo "")
35
0 commit comments