Skip to content

Commit da134ca

Browse files
Merge pull request #9811 from rafaeltonholo/ci/add-missing-step-to-build-cli-tools
fix(ci): build cli tools if needed missing checkout and gradle setup
2 parents 4d84152 + 345df5e commit da134ca

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/android-pr.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ jobs:
7676
filters: |
7777
cli_tools_changed:
7878
- 'cli/**'
79+
80+
- name: Checkout the repo
81+
if: steps.changes.outputs.cli_tools_changed == 'true'
82+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
83+
84+
- name: Prepares environment
85+
if: steps.changes.outputs.cli_tools_changed == 'true'
86+
uses: ./.github/actions/setup
87+
7988
- name: Build CLI tools
8089
# run only if CLI tools were changed
8190
if: steps.changes.outputs.cli_tools_changed == 'true'

0 commit comments

Comments
 (0)