Skip to content

Commit 39cca3d

Browse files
authored
Enable submodules in checkout steps
Added submodule support to the checkout steps.
1 parent dc359d1 commit 39cca3d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-gradle.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v4
15+
with:
16+
submodules: true
1517
- name: Install Java
1618
uses: actions/setup-java@v4
1719
with:
@@ -64,6 +66,8 @@ jobs:
6466

6567
- name: Checkout Repository
6668
uses: actions/checkout@v4
69+
with:
70+
submodules: true
6771
- name: Install Java
6872
uses: actions/setup-java@v4
6973
with:
@@ -86,4 +90,4 @@ jobs:
8690
with:
8791
name: processing-${{ matrix.os_prefix }}-${{ matrix.arch }}-br_${{ github.ref_name }}
8892
retention-days: 1
89-
path: app/build/compose/binaries/main/${{ matrix.binary }}
93+
path: app/build/compose/binaries/main/${{ matrix.binary }}

0 commit comments

Comments
 (0)