Skip to content

Commit dc359d1

Browse files
authored
Enable submodule checkout in Gradle workflow
Added support for submodules in the checkout step.
1 parent 6eddaf4 commit dc359d1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pull_request-gradle.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
steps:
1414
- name: Checkout Repository
1515
uses: actions/checkout@v4
16+
with:
17+
submodules: true
1618
- name: Install Java
1719
uses: actions/setup-java@v4
1820
with:
@@ -65,6 +67,8 @@ jobs:
6567

6668
- name: Checkout Repository
6769
uses: actions/checkout@v4
70+
with:
71+
submodules: true
6872
- name: Install Java
6973
uses: actions/setup-java@v4
7074
with:
@@ -87,4 +91,4 @@ jobs:
8791
with:
8892
name: processing-${{ matrix.os_prefix }}-${{ matrix.arch }}-pr_${{ github.event.pull_request.number }}
8993
retention-days: 5
90-
path: app/build/compose/binaries/main/${{ matrix.binary }}
94+
path: app/build/compose/binaries/main/${{ matrix.binary }}

0 commit comments

Comments
 (0)