We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81cf904 + ff11cfc commit 91562feCopy full SHA for 91562fe
1 file changed
build/action.yml
@@ -36,6 +36,12 @@ inputs:
36
description: >-
37
Update 'latest' tag when pushing
38
default: false
39
+ submodules:
40
+ description: >-
41
+ Whether to checkout submodules (as for actions@v3) and thence build them
42
+ into the image. Set to false by default as for checkout. If you use submodules,
43
+ you probably want to set this.
44
+ default: false
45
46
runs:
47
using: composite
@@ -44,6 +50,7 @@ runs:
50
uses: actions/checkout@v3
51
with:
52
ref: ${{ inputs.tag }}
53
+ submodules: ${{ inputs.submodules }}
54
48
55
- name: Find commit for tag
49
56
id: tag_check
0 commit comments