Skip to content

Commit acf4bc9

Browse files
committed
Checkout first
1 parent 7af1627 commit acf4bc9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/actions/android/action.yml

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ inputs:
1111
runs:
1212
using: "composite"
1313
steps:
14-
- uses: actions/checkout@v4
15-
with:
16-
submodules: true
17-
1814
- uses: actions/setup-java@v4
1915
with:
2016
distribution: "temurin"

.github/workflows/android.yml

+3
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ jobs:
88
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
99
runs-on: ubuntu-latest
1010
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
submodules: true
1114
- name: Build Android
1215
uses: ./.github/actions/android

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
name: Build Android
3838
runs-on: ubuntu-latest
3939
steps:
40+
- uses: actions/checkout@v4
41+
with:
42+
submodules: true
4043
- name: Build Android
4144
uses: ./.github/actions/android
4245

0 commit comments

Comments
 (0)