We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
publish.yaml
1 parent b51c356 commit c81f25cCopy full SHA for c81f25c
.github/workflows/publish.yaml
@@ -77,6 +77,12 @@ on:
77
default: true
78
required: false
79
type: boolean
80
+ checkout_submodules:
81
+ description: >-
82
+ Whether to checkout submodules of git repositories.
83
+ default: false
84
+ required: false
85
+ type: boolean
86
87
jobs:
88
# Note that this job does not require the specified environment.
@@ -91,10 +97,14 @@ jobs:
91
97
runs-on: ubuntu-latest
92
98
steps:
93
99
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
100
+ with:
101
+ submodules: ${{ inputs.checkout_submodules }}
102
+
94
103
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
95
104
if: ${{ inputs.use-flutter }}
96
105
with:
106
channel: ${{ inputs.sdk }}
107
108
109
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
110
if: ${{ !inputs.use-flutter }}
0 commit comments