Skip to content

Commit c3d95f3

Browse files
committedApr 16, 2024
Add submodule checkout support
1 parent d5d1320 commit c3d95f3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎.github/workflows/gradle.yml

+7
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ on:
4848
required: false
4949
type: string
5050
default: "latest"
51+
submodules:
52+
description: "Whether to checkout submodules: `true` to checkout submodules or `recursive` to recursively checkout submodules."
53+
required: false
54+
type: string
55+
default: "false"
56+
5157
secrets:
5258
DISCORD_WEBHOOK:
5359
required: false
@@ -91,6 +97,7 @@ jobs:
9197
steps:
9298
- uses: actions/checkout@v4
9399
with:
100+
submodules: ${{ inputs.submodules }}
94101
fetch-depth: 1000
95102
fetch-tags: true
96103

0 commit comments

Comments
 (0)
Please sign in to comment.