Skip to content

Commit 9fa0468

Browse files
committed
run git submodule manually
1 parent 93734c0 commit 9fa0468

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ jobs:
66
check:
77
runs-on: ubuntu-latest
88
steps:
9-
- name: Checkout repository and submodules
9+
- name: Checkout repository
1010
uses: actions/checkout@v3
11-
with:
12-
submodules: true
13-
# This is only needed for the flutter submodule.
14-
# We can't do a depth-1 clone, because we need the most recent tag
15-
# so that Flutter knows its version and sees the constraint in our
16-
# pubspec is satisfied. It's uncommon for flutter/flutter to go
17-
# more than 100 commits between tags. Fetch 1000 for good measure.
18-
fetch-depth: 1000
11+
12+
- name: Checkout flutter submodule
13+
# We can't do a depth-1 clone, because we need the most recent tag
14+
# so that Flutter knows its version and sees the constraint in our
15+
# pubspec is satisfied. It's uncommon for flutter/flutter to go
16+
# more than 100 commits between tags. Fetch 1000 for good measure.
17+
run: |
18+
git submodule update --init --depth 1000
1919
2020
- name: Add vendored flutter to PATH
2121
run: |

0 commit comments

Comments
 (0)