Skip to content

Commit 2146ec1

Browse files
Merge pull request #58 from Android-PowerUser/codex/add-/gradlew-detect-to-github-actions
Add conditional Gradle `detect` steps for app and humanoperator in manual CI
2 parents 2543c59 + 98ff221 commit 2146ec1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/manual.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ jobs:
104104
if: needs.detect-changes.outputs.humanoperator_changed == 'true' || needs.detect-changes.outputs.shared_changed == 'true'
105105
run: ./gradlew :humanoperator:compileDebugKotlin
106106

107+
- name: Detect (app)
108+
if: needs.detect-changes.outputs.app_changed == 'true' || needs.detect-changes.outputs.shared_changed == 'true'
109+
run: ./gradlew :app:detect
110+
111+
- name: Detect (humanoperator)
112+
if: needs.detect-changes.outputs.humanoperator_changed == 'true' || needs.detect-changes.outputs.shared_changed == 'true'
113+
run: ./gradlew :humanoperator:detect
114+
107115
build:
108116
needs: [detect-changes, compile-check]
109117
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)