We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f060c80 commit e714013Copy full SHA for e714013
src/jobs/build.yml
@@ -69,6 +69,11 @@ parameters:
69
description: |
70
Whether to return the license used to build the project.
71
Unity only allows returning professional licenses.
72
+ fetch-submodules:
73
+ type: boolean
74
+ default: false
75
+ description: |
76
+ Whether to fetch git submodules
77
no_output_timeout:
78
type: string
79
default: "20m"
@@ -93,6 +98,12 @@ executor: << parameters.executor >>
93
98
94
99
steps:
95
100
- checkout
101
+ - run:
102
+ name: Fetch submodules
103
+ command: |
104
+ git submodule sync
105
+ git submodule update --init
106
+ condition: << parameters.fetch-submodules >>
96
107
- prepare-env:
97
108
unity-username-var-name: << parameters.unity-username-var-name >>
109
unity-password-var-name: << parameters.unity-password-var-name >>
0 commit comments